Changeset 3711:004095dbea64
- Timestamp:
- 02/21/18 13:55:01 (7 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3690 r3711 984 984 text-decoration: none; } 985 985 986 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, select, legend { 986 input[type=text], 987 input[type=color], 988 input[type=email], 989 input[type=url], 990 input[type=datetime], 991 input[type=date], 992 input[type=time], 993 input[type=file], 994 input[type=number], 995 input[type=password], 996 input[type=submit], 997 input[type=button], 998 input[type=reset], 999 a.button, button, textarea, select, legend { 987 1000 max-width: 100%; } 988 1001 989 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, legend { 1002 input[type=text], 1003 input[type=color], 1004 input[type=email], 1005 input[type=url], 1006 input[type=datetime], 1007 input[type=date], 1008 input[type=time], 1009 input[type=file], 1010 input[type=number], 1011 input[type=password], 1012 input[type=submit], 1013 input[type=button], 1014 input[type=reset], 1015 a.button, button, textarea, legend { 990 1016 border-radius: 3px; } 991 1017 … … 1006 1032 background-color: #eee; } 1007 1033 1008 input[type=text], textarea { 1034 input[type=text], 1035 input[type=color], 1036 input[type=email], 1037 input[type=url], 1038 input[type=datetime], 1039 input[type=date], 1040 input[type=time], 1041 input[type=file], 1042 input[type=number], 1043 textarea { 1009 1044 font-family: inherit; 1010 1045 font-size: 100%; } … … 1029 1064 background: #FFBABA; } 1030 1065 1031 input[type=text], input[type=password], textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 1066 input[type=text], 1067 input[type=password], 1068 input[type=color], 1069 input[type=email], 1070 input[type=url], 1071 input[type=datetime], 1072 input[type=date], 1073 input[type=time], 1074 input[type=file], 1075 input[type=number], 1076 textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 1032 1077 color: #000; 1033 1078 box-shadow: 1px 1px 2px #f3f3f3 inset; … … 1035 1080 vertical-align: top; } 1036 1081 1037 input[type=text], input[type=password], textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 1082 input[type=text], 1083 input[type=password], 1084 input[type=color], 1085 input[type=email], 1086 input[type=url], 1087 input[type=datetime], 1088 input[type=date], 1089 input[type=time], 1090 input[type=file], 1091 input[type=number], 1092 textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 1038 1093 background: #fcfcfc; 1039 1094 border-width: 1px; … … 1068 1123 background: transparent url(../images/check-on.png) no-repeat 0 50%; } 1069 1124 1070 input[type=text], input[type=password], textarea { 1125 input[type=text], 1126 input[type=color], 1127 input[type=email], 1128 input[type=url], 1129 input[type=datetime], 1130 input[type=date], 1131 input[type=time], 1132 input[type=number], 1133 input[type=password], 1134 textarea { 1071 1135 margin-right: .3em; } 1072 1136 … … 2104 2168 margin-top: 1em; } 2105 2169 #login-screen input[type=text], 2170 #login-screen input[type=color], 2171 #login-screen input[type=email], 2172 #login-screen input[type=url], 2173 #login-screen input[type=datetime], 2174 #login-screen input[type=date], 2175 #login-screen input[type=time], 2176 #login-screen input[type=file], 2177 #login-screen input[type=number], 2106 2178 #login-screen input[type=password], 2107 2179 #login-screen input[type=submit], 2108 2180 #login-screen input[type=text]:focus, 2181 #login-screen input[type=color]:focus, 2182 #login-screen input[type=email]:focus, 2183 #login-screen input[type=url]:focus, 2184 #login-screen input[type=datetime]:focus, 2185 #login-screen input[type=date]:focus, 2186 #login-screen input[type=time]:focus, 2187 #login-screen input[type=file]:focus, 2188 #login-screen input[type=number]:focus, 2109 2189 #login-screen input[type=password]:focus, 2110 2190 #login-screen input[type=submit]:focus { -
admin/style/scss/partials/_auth.scss
r3439 r3711 20 20 } 21 21 input[type=text], 22 input[type=color], 23 input[type=email], 24 input[type=url], 25 input[type=datetime], 26 input[type=date], 27 input[type=time], 28 input[type=file], 29 input[type=number], 22 30 input[type=password], 23 31 input[type=submit], 24 32 input[type=text]:focus, 33 input[type=color]:focus, 34 input[type=email]:focus, 35 input[type=url]:focus, 36 input[type=datetime]:focus, 37 input[type=date]:focus, 38 input[type=time]:focus, 39 input[type=file]:focus, 40 input[type=number]:focus, 25 41 input[type=password]:focus, 26 42 input[type=submit]:focus { -
admin/style/scss/partials/_forms.scss
r3690 r3711 1 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, select, legend { 1 input[type=text], 2 input[type=color], 3 input[type=email], 4 input[type=url], 5 input[type=datetime], 6 input[type=date], 7 input[type=time], 8 input[type=file], 9 input[type=number], 10 input[type=password], 11 input[type=submit], 12 input[type=button], 13 input[type=reset], 14 a.button, button, textarea, select, legend { 2 15 max-width: 100%; 3 16 } 4 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, legend { 17 input[type=text], 18 input[type=color], 19 input[type=email], 20 input[type=url], 21 input[type=datetime], 22 input[type=date], 23 input[type=time], 24 input[type=file], 25 input[type=number], 26 input[type=password], 27 input[type=submit], 28 input[type=button], 29 input[type=reset], 30 a.button, button, textarea, legend { 5 31 border-radius: 3px; 6 32 } … … 22 48 } 23 49 } 24 input[type=text], textarea { 50 input[type=text], 51 input[type=color], 52 input[type=email], 53 input[type=url], 54 input[type=datetime], 55 input[type=date], 56 input[type=time], 57 input[type=file], 58 input[type=number], 59 textarea { 25 60 font-family: $sans-serif-input; 26 61 font-size: 100%; … … 45 80 background: #FFBABA; 46 81 } 47 input[type=text], input[type=password], textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 82 input[type=text], 83 input[type=password], 84 input[type=color], 85 input[type=email], 86 input[type=url], 87 input[type=datetime], 88 input[type=date], 89 input[type=time], 90 input[type=file], 91 input[type=number], 92 textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 48 93 color: #000; 49 94 box-shadow: 1px 1px 2px #f3f3f3 inset; … … 51 96 vertical-align: top; 52 97 } 53 input[type=text], input[type=password], textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 98 input[type=text], 99 input[type=password], 100 input[type=color], 101 input[type=email], 102 input[type=url], 103 input[type=datetime], 104 input[type=date], 105 input[type=time], 106 input[type=file], 107 input[type=number], 108 textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 54 109 background: #fcfcfc; 55 110 border-width: 1px; … … 89 144 background: transparent url(../images/check-on.png) no-repeat 0 50%; 90 145 } 91 input[type=text], input[type=password], textarea { 146 input[type=text], 147 input[type=color], 148 input[type=email], 149 input[type=url], 150 input[type=datetime], 151 input[type=date], 152 input[type=time], 153 input[type=number], 154 input[type=password], 155 textarea { 92 156 margin-right: .3em; 93 157 }
Note: See TracChangeset
for help on using the changeset viewer.