1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 08:17:12 +02:00

CSS adjustment in AdminThemeDefault to improve appearance of language tabs in file/image fields. Also, remove an extra unnecessary margin on language-tabbed text Inputfields.

This commit is contained in:
Ryan Cramer
2017-07-17 06:08:47 -04:00
parent b7cb72cac6
commit 651e8bd20c
5 changed files with 17 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -507,9 +507,7 @@ $ui-tabs-container-bg: transparentize($subtle-bg, 0.3); /* note same as item nes
.Inputfields .langTabsContainer,
#content .Inputfields .langTabsContainer {
padding-top: 0;
padding-left: 0;
padding-right: 0;
padding: 0;
p.description {
background: $ui-tabs-container-bg;
@@ -591,6 +589,17 @@ $ui-tabs-container-bg: transparentize($subtle-bg, 0.3); /* note same as item nes
}
}
}
.InputfieldFile .ui-tabs,
.InputfieldImage .ui-tabs,
#content .InputfieldFile .ui-tabs,
#content .InputfieldImage .ui-tabs {
border: 1px solid $subtle-border;
border-radius: 0;
}
.InputfieldFile .langTabsContainer + .InputfieldFileTags,
.InputfieldImage .langTabsContainer + .InputfieldFileTags {
margin-top: 0.5em;
}
.ui-tabs-panel,
#content .ui-tabs-panel {
@@ -605,3 +614,4 @@ $ui-tabs-container-bg: transparentize($subtle-bg, 0.3); /* note same as item nes
display: none;
}
}