Fix missing } that caused code to be broken in css (#1453)
* Fix missing } that caused code to be broken in css * Make css rule apply at the right res to prevent the need of !important * remove useless !important again
Cette révision appartient à :
Parent
4c4a01b7be
révision
db19afb852
2 fichiers modifiés avec 10 ajouts et 2 suppressions
|
@ -126,6 +126,7 @@ td.tr-le, .error-text {
|
|||
}
|
||||
.alt-colors tr:nth-child(even).remake {
|
||||
background: hsla(30, 100%, 62%, 0.2) !important;
|
||||
}
|
||||
.aplus, .btn-blue {
|
||||
background: hsla(200, 100%, 50%, 0.2) !important;
|
||||
}
|
||||
|
|
|
@ -887,7 +887,7 @@ html, body {
|
|||
display: none!important;
|
||||
}
|
||||
.header .nav-btn {
|
||||
padding: 0px 6px!important;
|
||||
padding: 0px 6px;
|
||||
}
|
||||
.form-input.form-category {
|
||||
width: 72px;
|
||||
|
@ -1864,9 +1864,16 @@ span.tag {
|
|||
|
||||
/* Language specific CSS */
|
||||
|
||||
html[lang="ja-jp"] .header .nav-btn { padding: 0 8px;}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
html[lang="ja-jp"] .header .h-user>.nav-btn {
|
||||
font-size: 75%;
|
||||
|
||||
}
|
||||
}
|
||||
@media (min-width: 961px) {
|
||||
html[lang="ja-jp"] .header .nav-btn {
|
||||
padding: 0 8px;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Référencer dans un nouveau ticket