Rivington: Revert border-width change in favor of color-annotation-only solution.
This commit is contained in:
parent
91b30b3a74
commit
0a6ae984c7
4 changed files with 24 additions and 5 deletions
|
@ -393,6 +393,25 @@ add_color_rule( 'fg1', '#EE4266', array(
|
|||
* Custom CSS
|
||||
*/
|
||||
function rivington_custom_colors_extra_css() { ?>
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
input[type="range"],
|
||||
input[type="date"],
|
||||
input[type="month"],
|
||||
input[type="week"],
|
||||
input[type="time"],
|
||||
input[type="datetime"],
|
||||
input[type="datetime-local"],
|
||||
input[type="color"],
|
||||
textarea {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 560px) {
|
||||
.main-navigation > div > ul > li > .sub-menu > li:first-child > a {
|
||||
border-top: 1px solid;
|
||||
|
|
|
@ -166,7 +166,7 @@ $config-elements: (
|
|||
|
||||
// Borders
|
||||
"border": (
|
||||
"width": 1px,
|
||||
"width": 0,
|
||||
"radius": 3px,
|
||||
),
|
||||
|
||||
|
|
|
@ -1059,7 +1059,7 @@ input[type="datetime-local"],
|
|||
input[type="color"],
|
||||
textarea {
|
||||
color: black;
|
||||
border: 1px solid #353a46;
|
||||
border: 0 solid #353a46;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
@ -1085,7 +1085,7 @@ textarea:focus {
|
|||
}
|
||||
|
||||
select {
|
||||
border: 1px solid #353a46;
|
||||
border: 0 solid #353a46;
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
|
@ -1059,7 +1059,7 @@ input[type="datetime-local"],
|
|||
input[type="color"],
|
||||
textarea {
|
||||
color: black;
|
||||
border: 1px solid #353a46;
|
||||
border: 0 solid #353a46;
|
||||
border-radius: 3px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
@ -1085,7 +1085,7 @@ textarea:focus {
|
|||
}
|
||||
|
||||
select {
|
||||
border: 1px solid #353a46;
|
||||
border: 0 solid #353a46;
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
Loading…
Reference in a new issue