diff --git a/modules/backend/assets/css/october.css b/modules/backend/assets/css/october.css index d08018f2b..030df1aba 100644 --- a/modules/backend/assets/css/october.css +++ b/modules/backend/assets/css/october.css @@ -964,6 +964,11 @@ .control-filelist ul li .checkbox label:before { border-color: #cccccc; } +.control-filelist.single-line ul li a span.title { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; +} .control-filelist.hero ul li { background: #ffffff; border-bottom: none; @@ -14855,6 +14860,13 @@ body.mainmenu-open .mainmenu-collapsed ul { opacity: 1 !important; filter: alpha(opacity=100) !important; } +#layout-side-panel .fix-button-content-header .fix-button { + top: 9px; + right: 7px; +} +#layout-side-panel .fix-button-content-header .fix-button i { + color: #eeeeee; +} #layout-side-panel .sidepanel-content-header { background: #95a5a6; color: white; diff --git a/modules/backend/assets/less/controls/filelist.less b/modules/backend/assets/less/controls/filelist.less index 9781b3388..66511f4b7 100644 --- a/modules/backend/assets/less/controls/filelist.less +++ b/modules/backend/assets/less/controls/filelist.less @@ -167,6 +167,16 @@ } } + &.single-line { + ul { + li a span.title { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + } + } + } + &.hero { .a-hover() { background: @color-filelist-hero-hover-bg; diff --git a/modules/backend/assets/less/core/variables.less b/modules/backend/assets/less/core/variables.less index c7f0bbc58..0abb8e833 100644 --- a/modules/backend/assets/less/core/variables.less +++ b/modules/backend/assets/less/core/variables.less @@ -72,6 +72,7 @@ @color-scrollbar-thumb: #aaa; @color-scrollpanel-border: #efefef; @color-scrollpanel-fix-button: #aaaaaa; +@color-scrollpanel-fix-button-light: #eeeeee; @color-scroll-indicator: #bbbbbb; @color-richeditor-toolbar: #dddddd; diff --git a/modules/backend/assets/less/layout/sidepanel.less b/modules/backend/assets/less/layout/sidepanel.less index 2cd95b0a5..d154528d3 100644 --- a/modules/backend/assets/less/layout/sidepanel.less +++ b/modules/backend/assets/less/layout/sidepanel.less @@ -25,6 +25,15 @@ } } + .fix-button-content-header .fix-button { + top: 9px; + right: 7px; + + i { + color: @color-scrollpanel-fix-button-light; + } + } + .sidepanel-content-header { background: #95a5a6; color: white;