-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b26f95
commit a482ecc
Showing
79 changed files
with
17,452 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#wpcf7-contact-form-list-table span.shortcode input, | ||
#wpcf7-contact-form-editor span.shortcode input { | ||
color: #fff; | ||
} | ||
|
||
div.config-error, span.config-error, ul.config-error { | ||
color: #bbc8d4; | ||
} | ||
|
||
.keyboard-interaction { | ||
color: #bbc8d4; | ||
} | ||
|
||
#contact-form-editor .contact-form-editor-panel { | ||
background-color: #32373c; | ||
} | ||
|
||
#contact-form-editor-tabs { | ||
border-bottom: 1px solid #aaa; | ||
} | ||
|
||
#contact-form-editor-tabs li { | ||
border: 1px solid #ccc; | ||
border-bottom: 1px solid #aaa; | ||
background-color: #37444c; | ||
} | ||
|
||
#contact-form-editor-tabs li:hover { | ||
background-color: #000; | ||
} | ||
|
||
#contact-form-editor-tabs li.ui-tabs-active, | ||
#contact-form-editor-tabs li.ui-tabs-active:hover { | ||
border-top: 1px solid #aaa; | ||
border-right: 1px solid #aaa; | ||
border-left: 1px solid #aaa; | ||
border-bottom: 1px solid #32373c; | ||
background-color: #32373c; | ||
} | ||
|
||
#contact-form-editor-tabs li a { | ||
color: #bbc8d4; | ||
} | ||
|
||
#contact-form-editor-tabs li.ui-tabs-active a { | ||
color: #fff; | ||
} | ||
|
||
#contact-form-editor-tabs li a:hover { | ||
color: #fff; | ||
} | ||
|
||
.contact-form-editor-box-mail span.mailtag { | ||
color: #ddd; | ||
} | ||
|
||
.contact-form-editor-box-mail span.mailtag.used { | ||
color: #999; | ||
} | ||
|
||
#mail-panel .contact-form-editor-box-mail table.form-table tr th, | ||
#mail-panel .contact-form-editor-box-mail table.form-table tr td { | ||
background-color: #32373c; | ||
} | ||
|
||
div.wrap#wpcf7-integration .card.active { | ||
border-color: #00a0d2; | ||
} | ||
|
||
div.wrap#wpcf7-integration .card .infobox { | ||
color: #aaa; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Tabs | ||
*/ | ||
#contact-form-editor-tabs { | ||
padding: 9px 10px 0 15px; | ||
} | ||
|
||
/* | ||
* Form Tab | ||
*/ | ||
.tag-generator-panel { | ||
text-align: right; | ||
} | ||
|
||
.tag-generator-panel .control-box > fieldset legend { | ||
border: 1px solid #dfdfdf; | ||
border-right: 4px solid #00a0d2; | ||
} | ||
|
||
.tag-generator-panel .insert-box input.tag { | ||
float: right; | ||
} | ||
|
||
.tag-generator-panel .insert-box .submitbox input[type="button"] { | ||
float: left; | ||
} | ||
|
||
/* | ||
* Mail Tab | ||
*/ | ||
.contact-form-editor-box-mail span.mailtag { | ||
margin: 0 4px 0 0; | ||
} | ||
|
||
/* | ||
* Welcome Panel | ||
*/ | ||
.welcome-panel .welcome-panel-column, | ||
.welcome-panel .welcome-panel-column:first-child { | ||
padding: 0 0 0 2%; | ||
} | ||
|
||
/* | ||
* Integration | ||
*/ | ||
.card { | ||
border-left: 1px solid #e5e5e5; | ||
border-right: 4px solid #e5e5e5; | ||
} | ||
|
||
.card img.icon { | ||
float: right; | ||
margin: 8px -8px 8px 8px; | ||
} | ||
|
||
.card h2.title { | ||
float: right; | ||
} | ||
|
||
.card .infobox { | ||
float: left; | ||
} |
Oops, something went wrong.