Dotclear

Changeset 3711:004095dbea64


Ignore:
Timestamp:
02/21/18 13:55:01 (7 years ago)
Author:
franck <carnet.franck.paul@…>
Branch:
default
Message:

Cope with specialized input fields in admin CSS

Location:
admin/style
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • admin/style/default.css

    r3690 r3711  
    984984  text-decoration: none; } 
    985985 
    986 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, select, legend { 
     986input[type=text], 
     987input[type=color], 
     988input[type=email], 
     989input[type=url], 
     990input[type=datetime], 
     991input[type=date], 
     992input[type=time], 
     993input[type=file], 
     994input[type=number], 
     995input[type=password], 
     996input[type=submit], 
     997input[type=button], 
     998input[type=reset], 
     999a.button, button, textarea, select, legend { 
    9871000  max-width: 100%; } 
    9881001 
    989 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, legend { 
     1002input[type=text], 
     1003input[type=color], 
     1004input[type=email], 
     1005input[type=url], 
     1006input[type=datetime], 
     1007input[type=date], 
     1008input[type=time], 
     1009input[type=file], 
     1010input[type=number], 
     1011input[type=password], 
     1012input[type=submit], 
     1013input[type=button], 
     1014input[type=reset], 
     1015a.button, button, textarea, legend { 
    9901016  border-radius: 3px; } 
    9911017 
     
    10061032    background-color: #eee; } 
    10071033 
    1008 input[type=text], textarea { 
     1034input[type=text], 
     1035input[type=color], 
     1036input[type=email], 
     1037input[type=url], 
     1038input[type=datetime], 
     1039input[type=date], 
     1040input[type=time], 
     1041input[type=file], 
     1042input[type=number], 
     1043textarea { 
    10091044  font-family: inherit; 
    10101045  font-size: 100%; } 
     
    10291064  background: #FFBABA; } 
    10301065 
    1031 input[type=text], input[type=password], textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
     1066input[type=text], 
     1067input[type=password], 
     1068input[type=color], 
     1069input[type=email], 
     1070input[type=url], 
     1071input[type=datetime], 
     1072input[type=date], 
     1073input[type=time], 
     1074input[type=file], 
     1075input[type=number], 
     1076textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
    10321077  color: #000; 
    10331078  box-shadow: 1px 1px 2px #f3f3f3 inset; 
     
    10351080  vertical-align: top; } 
    10361081 
    1037 input[type=text], input[type=password], textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
     1082input[type=text], 
     1083input[type=password], 
     1084input[type=color], 
     1085input[type=email], 
     1086input[type=url], 
     1087input[type=datetime], 
     1088input[type=date], 
     1089input[type=time], 
     1090input[type=file], 
     1091input[type=number], 
     1092textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
    10381093  background: #fcfcfc; 
    10391094  border-width: 1px; 
     
    10681123  background: transparent url(../images/check-on.png) no-repeat 0 50%; } 
    10691124 
    1070 input[type=text], input[type=password], textarea { 
     1125input[type=text], 
     1126input[type=color], 
     1127input[type=email], 
     1128input[type=url], 
     1129input[type=datetime], 
     1130input[type=date], 
     1131input[type=time], 
     1132input[type=number], 
     1133input[type=password], 
     1134textarea { 
    10711135  margin-right: .3em; } 
    10721136 
     
    21042168    margin-top: 1em; } 
    21052169  #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], 
    21062178  #login-screen input[type=password], 
    21072179  #login-screen input[type=submit], 
    21082180  #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, 
    21092189  #login-screen input[type=password]:focus, 
    21102190  #login-screen input[type=submit]:focus { 
  • admin/style/scss/partials/_auth.scss

    r3439 r3711  
    2020     } 
    2121     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], 
    2230     input[type=password], 
    2331     input[type=submit], 
    2432     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, 
    2541     input[type=password]:focus, 
    2642     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 { 
     1input[type=text], 
     2input[type=color], 
     3input[type=email], 
     4input[type=url], 
     5input[type=datetime], 
     6input[type=date], 
     7input[type=time], 
     8input[type=file], 
     9input[type=number], 
     10input[type=password], 
     11input[type=submit], 
     12input[type=button], 
     13input[type=reset], 
     14a.button, button, textarea, select, legend { 
    215  max-width: 100%; 
    316} 
    4 input[type=text], input[type=password], input[type=submit], input[type=button], input[type=reset], a.button, button, textarea, legend { 
     17input[type=text], 
     18input[type=color], 
     19input[type=email], 
     20input[type=url], 
     21input[type=datetime], 
     22input[type=date], 
     23input[type=time], 
     24input[type=file], 
     25input[type=number], 
     26input[type=password], 
     27input[type=submit], 
     28input[type=button], 
     29input[type=reset], 
     30a.button, button, textarea, legend { 
    531  border-radius: 3px; 
    632} 
     
    2248  } 
    2349} 
    24 input[type=text], textarea { 
     50input[type=text], 
     51input[type=color], 
     52input[type=email], 
     53input[type=url], 
     54input[type=datetime], 
     55input[type=date], 
     56input[type=time], 
     57input[type=file], 
     58input[type=number], 
     59textarea { 
    2560  font-family: $sans-serif-input; 
    2661  font-size: 100%; 
     
    4580  background: #FFBABA; 
    4681} 
    47 input[type=text], input[type=password], textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
     82input[type=text], 
     83input[type=password], 
     84input[type=color], 
     85input[type=email], 
     86input[type=url], 
     87input[type=datetime], 
     88input[type=date], 
     89input[type=time], 
     90input[type=file], 
     91input[type=number], 
     92textarea, select, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
    4893  color: #000; 
    4994  box-shadow: 1px 1px 2px #f3f3f3 inset; 
     
    5196  vertical-align: top; 
    5297} 
    53 input[type=text], input[type=password], textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
     98input[type=text], 
     99input[type=password], 
     100input[type=color], 
     101input[type=email], 
     102input[type=url], 
     103input[type=datetime], 
     104input[type=date], 
     105input[type=time], 
     106input[type=file], 
     107input[type=number], 
     108textarea, input:not([type=file]):invalid, input:not([type=file]):invalid:placeholder-shown { 
    54109  background: #fcfcfc; 
    55110  border-width: 1px; 
     
    89144  background: transparent url(../images/check-on.png) no-repeat 0 50%; 
    90145} 
    91 input[type=text], input[type=password], textarea { 
     146input[type=text], 
     147input[type=color], 
     148input[type=email], 
     149input[type=url], 
     150input[type=datetime], 
     151input[type=date], 
     152input[type=time], 
     153input[type=number], 
     154input[type=password], 
     155textarea { 
    92156  margin-right: .3em; 
    93157} 
Note: See TracChangeset for help on using the changeset viewer.

Sites map