1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 23:05:10 +01:00

Fix for add/edit bookmark, some theme tweaks

This commit is contained in:
2016-07-18 21:27:42 +02:00
parent 38cfc0a3de
commit 017212045a
3 changed files with 24 additions and 21 deletions

View File

@@ -1,28 +1,28 @@
/* label color */
.input-field label {
color: #FFF;
color: #000;
}
/* label focus color */
.input-field input[type=text]:focus + label {
color: #FFF;
color: #000;
}
/* label underline focus color */
.input-field input[type=text]:focus {
border-bottom: 1px solid #FFF;
box-shadow: 0 1px 0 0 #FFF;
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* valid color */
.input-field input[type=text].valid {
border-bottom: 1px solid #FFF;
box-shadow: 0 1px 0 0 #FFF;
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* invalid color */
.input-field input[type=text].invalid {
border-bottom: 1px solid #FFF;
box-shadow: 0 1px 0 0 #FFF;
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #FFF;
color: #000;
}