diff --git a/public/less/admin/admin.less b/public/less/admin/admin.less index 24822a43b0..98279e2755 100644 --- a/public/less/admin/admin.less +++ b/public/less/admin/admin.less @@ -1,6 +1,5 @@ @import "./bootstrap/bootstrap"; @import "./mixins"; -@import "./components"; @import "./general/dashboard"; @import "./manage/categories"; @@ -12,6 +11,9 @@ @import "./extend/plugins"; @import "./advanced/database"; +@import "./modules/alerts"; +@import "./modules/selectable"; + .admin { padding-top: 70px; background: #f0f0f0; diff --git a/public/less/admin/components.less b/public/less/admin/modules/alerts.less similarity index 52% rename from public/less/admin/components.less rename to public/less/admin/modules/alerts.less index 80154c0828..8d52e439e1 100644 --- a/public/less/admin/components.less +++ b/public/less/admin/modules/alerts.less @@ -33,24 +33,3 @@ right:20px; bottom:20px; } - -.selectable { - .selector { - position: absolute; - border: 1px solid #89B; - background: #BCE; - background-color: #BEC; - border-color: #8B9; - z-index: 999; - } - - .selection { - border: 1px solid transparent; - margin: 2px; - - &.dropped, &.active { - background-color: #ECF1DB; - border: 1px dashed #9B8; - } - } -} \ No newline at end of file diff --git a/public/less/admin/modules/selectable.less b/public/less/admin/modules/selectable.less new file mode 100644 index 0000000000..dc8b762577 --- /dev/null +++ b/public/less/admin/modules/selectable.less @@ -0,0 +1,20 @@ +.selectable { + .selector { + position: absolute; + border: 1px solid #89B; + background: #BCE; + background-color: #BEC; + border-color: #8B9; + z-index: 999; + } + + .selection { + border: 1px solid transparent; + margin: 2px; + + &.dropped, &.active { + background-color: #ECF1DB; + border: 1px dashed #9B8; + } + } +} \ No newline at end of file