Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
mattc321 committed Oct 4, 2016
1 parent 7565a50 commit 6e1bae3
Show file tree
Hide file tree
Showing 7 changed files with 990 additions and 0 deletions.
339 changes: 339 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

91 changes: 91 additions & 0 deletions css/htmlmail_views.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/** EVENT PAGE
------------------------------------------------------------**/
.entityform-link {
border-radius: 4px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 14px;
text-decoration: none;
padding: 3px;
/* color: white; */
width: 220px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.entityform-link span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.entityform-link span:after {
content: "»";
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.entityform-link a:hover {
text-decoration: none;
}
.entityform-link:hover span:after {
opacity: 1;
right: 0;
}

.entityform-link span a {
color: white;
text -decoration:none;
}
.entityform-link:hover span {
padding-right: 25px;
}

.entityform-link.closed {
pointer-events: none;
cursor: default;
font-style: italic;
background: #cecece;
}
.comment-closes {
margin-left: 10px;
}

/** ENTITY FORM
------------------------------------------------------------**/
.node-ref-title {
color: #f4511e;
/* font-family: 'Tahoma', sans-serif; */
font-size: 25px;
font-weight: 300;
font-style: italic;
line-height: 40px;
margin: 0 0 16px;
}

/** DISABLE THE FORM IF NEEDED
------------------------------------------------------------**/
.disable-form form {
pointer-events: none;
font-style: italic;
color: #a5a5a5;
}


.efcb-sniffer:hover, #efcb-see-forms:hover{
cursor:pointer;
}

div#efcb-avail-forms {
transition: 0.5s;
}

/** ADMIN CONFIG PAGE
------------------------------------------------------------**/
.info-cont {
width: 40%;
}
20 changes: 20 additions & 0 deletions htmlmail_views.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name = HTML Mail Views
description = This module allows you to email a view
core = 7.x

dependencies[] = views
dependencies[] = ctools
dependencies[] = mimemail

files[] = views/handlers/htmlmail_views_views_handler_area.inc

scripts[] = js/htmlmail_views.js
stylesheets[all][] = css/htmlmail_views.css

configure = admin/config/htmlmail-views-settings

; Information added by packaging script on 2016-09-18
version = "7.x-1.0"
core = "7.x"
project = "htmlmail_views"
datestamp = "1386094705"
Loading

0 comments on commit 6e1bae3

Please sign in to comment.