Skip to content

Commit

Permalink
fix firefox styling
Browse files Browse the repository at this point in the history
  • Loading branch information
cbellone committed Jan 4, 2019
1 parent cc00911 commit ed52727
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions src/main/webapp/resources/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,18 @@ td.cell-wrap {

@media screen and (min-width: 991px) {

.setting input[type="text"], .setting input:not([type]), .setting textarea, .setting select {
.setting input[type="text"], .setting input:not([type]) {
text-indent:85px;
}

.setting select {
text-indent: 85px;
}

.setting textarea {
padding-left: 85px;
}

.settings-label {
position: absolute;
left: 20px;
Expand All @@ -237,11 +245,23 @@ td.cell-wrap {

.category-conf .setting input[type="text"],
.category-conf .setting input:not([type]),
.category-conf .setting textarea,
.category-conf .setting select {
text-indent: 110px;
}

.category-conf .setting textarea {
padding-left: 110px;
}

@-moz-document url-prefix() {
.category-conf .setting select {
text-indent: 50px;
}
.setting select {
text-indent: 40px;
}
}

.category-conf .settings-label {
width: 90px;
}
Expand Down

0 comments on commit ed52727

Please sign in to comment.