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

Fix issue processwire/processwire-issues#1856 to properly support pw-panel tabs in AdminThemeUikit

This commit is contained in:
Ryan Cramer
2024-01-04 10:07:25 -05:00
parent ee217ee3bd
commit b61da8575a
3 changed files with 14 additions and 14 deletions

View File

@@ -30,4 +30,3 @@
// } // }
} }
*/ */

File diff suppressed because one or more lines are too long

View File

@@ -67,23 +67,24 @@ em {
// Pop-out panel for PageList, PageView, debug, etc. // Pop-out panel for PageList, PageView, debug, etc.
body .pw-panel-container { body .pw-panel-container {
.pw-panel-button.ui-button { .pw-panel-button.ui-button {
// background: @global-primary-background; top: 30%;
background: @pw-body-background; background: @pw-button-background;
padding: 3px 12px 3px 15px !important; padding: 3px 11px 3px 11px !important;
small.ui-button-text { small.ui-button-text {
> span { > span {
display: none; color: @pw-button-color;
// font-size: @global-small-font-size; font-size: @global-font-size;
// line-height: @global-small-font-size; text-transform: uppercase;
// text-transform: uppercase;
} }
} }
i.fa { i.fa {
transform: rotate(-90deg); color: @pw-button-color;
color: @global-link-color; font-size: 16px;
font-size: 20px; &:has(+ span) {
position: relative; // rotate so it displays in upwards orientation when combined with text label
bottom: -4px; transform: rotate(-90deg);
}
} }
} }
} }