/** * This file defines most styles of the CMS: Colors, fonts, backgrounds, * alignments, dimensions. * * Use SCSS variable definitions in screen.css to avoid repeating styles * like background colours or padding dimensions. See themes/_default.scss * to get started. * * To avoid this file getting too large and complicated, it is encouraged to * create new SCSS files for larger components like the CMS menu or tree * (see _tree.scss and _menu.scss). */ /** ---------------------------------------------------- * Core Styles. * ---------------------------------------------------- */ html,body { width: 100%; height: 100%; overflow: hidden; @include global-reset; font-size: $font-base-size; line-height: $grid-vertical * 2; font-family: $font-family; color: $color-text; } .cms { a { color: $color-text-dark-link; text-decoration: none; &:hover, &:focus { text-decoration: underline; } } body .ui-widget { font-family: $font-family; font-size: $font-base-size; } strong { font-weight: bold; } } /** -------------------------------------------- * Helpers * -------------------------------------------- */ .cms-helper-hide-actions { .Actions { display: none; } } /** -------------------------------------------- * Panels Styles * -------------------------------------------- */ .cms-container { height: 100%; background: $tab-panel-texture-background; } .cms-preview, .cms-menu, .cms-content, .cms-content-header, .cms-content-tools, .cms-content-fields, .cms-edit-form, .cms-preview, .cms-preview iframe, .cms-preview-controls { @include inline-block; } .cms-content-header { background-color: darken($color-widget-bg, 20%); padding: $grid-vertical $grid-horizontal ($grid-vertical - 2) $grid-horizontal * 2; height: $grid-vertical * 4; z-index: 60; border-bottom: 2px solid darken($color-widget-bg, 35%); @include box-shadow($color-widget-bg 0 $grid-vertical $grid-vertical*2); @include background-image( linear-gradient(darken($color-widget-bg, 10%), darken($color-widget-bg, 30%)) ); h2 { float: left; padding: $grid-vertical $grid-horizontal 0 0; font-size: $font-base-size + 2; line-height: $grid-horizontal * 3; font-weight: bold; text-shadow: darken($color-widget-bg, 15%) 1px 1px 0; width: $grid-horizontal * 22 /* 24 - (padding on each side + margin) */; margin: 0; @include hide-text-overflow(); } & > div { width: 9999em; overflow: hidden; } .cms-content-header-tabs { float: left; } } .ui-tabs .cms-content-header { .ui-tabs-nav li { a { font-weight: bold; line-height: $grid-vertical * 2; padding: ($grid-vertical * 2 - 5) $grid-horizontal + 4 $grid-vertical + 1; border-bottom: 2px solid darken($color-tab, 15%); } } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { background-color: $color-tab; @include background-image( linear-gradient($color-tab, darken($color-tab, 10%) )); border-color: darken($color-tab, 20%); text-shadow: lighten($color-tab, 60%) 0 1px 0; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: $color-widget-bg; a { border-bottom: 2px solid $color-widget-bg; } } } /** ------------------------------------------------------- * Loading Interface * ------------------------------------------------------- */ .cms-content { &.loading, form.loading { background: url(../images/spinner.gif) no-repeat 50% 50%; } } /** ------------------------------------------------------- * Top Left Header and logo area * -------------------------------------------------------- */ .cms-header { background-color: darken($color-dark-bg, 10%); position: relative; padding: $grid-vertical * 2 8px 0 4px; line-height: 24px; @include background-image( linear-gradient(darken($color-dark-bg, 10%), $color-dark-bg, darken($color-dark-bg, 10%) )); span { color: $color-text-light; white-space: nowrap; text-overflow: ellipsis; display: block; a { color: $color-text-dark-link; display: inline; } } } .cms-logo { border-bottom: 1px solid darken($color-dark-separator, 20%); height: 31px; overflow: hidden; padding: 0 0 0 4px; vertical-align: middle; font-size: $font-base-size; .version { display: none; } a { display: inline-block; height: 24px; width: 24px; float: left; margin-right: 8px; background: $application-logo-small no-repeat; text-indent: -9999em; padding-right: 7px; border-right: 1px solid $color-dark-separator; } span { font-weight: bold; font-size: 14px; @include hide-text-overflow(); } } .cms-login-status { border-top: 1px solid $color-dark-separator; height: 24px; padding: 7px 4px 0 4px; overflow: hidden; line-height: 16px; font-size: $font-base-size - 1; .logout-link { display: inline-block; height: 16px; width: 16px; float: left; margin: 0 8px 0 3px; background: url(../images/logout.png) no-repeat; text-indent: -9999em; } } /** ----------------------------------------------- * Loading Screen * ------------------------------------------------ */ .ss-loading-screen, .ss-loading-screen .loading-logo { width: 100%; height: 100%; overflow: hidden; position: absolute; // TODO Convert to compass gradient include background: #fff; background: -moz-radial-gradient(50% 50% 180deg, circle cover, #FFFFFF, #EFEFEF, #C7C7C7 100%); background: -webkit-gradient(radial, 50% 50%, 350, 50% 50%, 0, from(#E3E3E3), to(white)); z-index: 100000; margin: 0; padding: 0; } .ss-loading-screen { .loading-logo { background-url: url(../images/logo.gif); background-repeat: no-repeat; background-color: transparent; background-position: 50% 50%; } p { width: 100%; text-align: center; position: absolute; bottom: 80px; span.notice { display: inline-block; font-size: 14px; padding: 10px 20px; color: #dc7f00; border: none; @include border-radius(5px); } } .loading-animation { display: none; position: absolute; left: 49%; top: 75%; } } /** -------------------------------------------- * Actions * -------------------------------------------- */ .cms-content-actions { margin: $grid-vertical $grid-horizontal; text-align: right; height: $grid-vertical*4; z-index: 70; @include box-shadow($tab-panel-texture-color 0 $grid-vertical*-2 $grid-vertical*2); } /** -------------------------------------------- * Messages * -------------------------------------------- */ .message { margin: 0 0 $grid_vertical 0; padding: $grid_vertical - 1 $grid_horizontal - 1; font-weight: bold; border: 1px black solid; &.notice { background-color: lighten($color-notice, 20%); border-color: $color-notice; a { color: #999; } } &.warning { background-color: lighten($color-warning, 20%); border-color: $color-warning; } &.error { background-color: lighten($color-error, 20%); border-color: $color-error; } p { margin: 0; } } /** -------------------------------------------- * ModelAdmin * -------------------------------------------- */ .ModelAdmin { // Disable by default, will be replaced by more intuitive column selection in new data grid .ResultAssemblyBlock { display: none; } } /** -------------------------------------------- * "Add page" dialog * -------------------------------------------- */ .cms-page-add-form-dialog { #PageType li { padding: 9px 0 9px 15px; overflow: hidden; border-bottom-width: 2px; border-bottom: 2px groove lighten($color-shadow-light, 95%); -webkit-border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch; border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch; &:hover, &.selected { background-color: $color-highlight-opacity; } input, label, .icon, .title { float: left; line-height: 1.3em; } .icon { width: 20px; display: block; width: 16px; height: 16px; margin: 0 4px; background-color: transparent; background-image: url(../images/sitetree_ss_pageclass_icons_default.png); background-repeat: no-repeat; } .class-HomePage { background-position: 0 -48px; } .class-RedirectorPage { background-position: 0 -16px; } .class-VirtualPage { background-position: 0 -32px; } .class-ErrorPage { background-position: 0 -112px; } .title { width: 120px; font-weight: bold; padding-right: 10px; } .description { font-style: italic; } } } /** -------------------------------------------- * Content toolbar * -------------------------------------------- */ .cms-content-toolbar { display: block; margin: 0 0 15px 0; @include doubleborder(bottom, $color-light-separator, lighten($color-light-separator, 50%)); @include legacy-pie-clearfix(); & > * { float: left; } .cms-tree-view-modes * { display: inline-block; } } /* -------------------------------------------------------- * Content Tools is the sidebar on the left of the main content * panel */ .cms-content-tools { background-color: darken($color-widget-bg, 5%); width: $grid-horizontal * 24; border-right: 1px solid darken($color-widget-bg, 15%); overflow-y: auto; overflow-x: hidden; z-index: 70; .cms-panel-header { padding: 0 $grid-horizontal / 2; margin: $grid-vertical $grid-horizontal * 1.5 0; line-height: $grid-vertical * 3; @include doubleborder(bottom, $color-light-separator, lighten($color-light-separator, 10%)) } .cms-panel-content { width: ($grid-horizontal * 21); padding: $grid-vertical $grid-horizontal * 2; } .cms-content-header { background-color: darken($color-widget-bg, 40%); border-bottom: 2px solid darken($color-widget-bg, 50%); @include background-image( linear-gradient(darken($color-widget-bg, 20%), darken($color-widget-bg, 40%)) ); h2 { text-shadow: darken($color-widget-bg, 50%) -1px -1px 0; width: $grid-horizontal * 22 /* 24 - (padding on each side + margin) */; color: lighten($color-widget-bg, 60%); @include hide-text-overflow(); } } h3,h4,h5 { font-weight: bold; line-height: $grid-vertical * 2; } h3 { font-size: $font-base-size + 1; } .ui-widget-content { background: none; } .field { /* * Fields are more compressed in the sidebar compared to the * main content editing window so the below alters the internal * spacing of the fields so we can move that spacing to between * the form fields rather than padding */ label { float: none; width: auto; font-size: 11px; padding: 0 $grid-horizontal 4px 0; } .middleColumn { margin: 0; } input.text, select, textarea { padding: 5px; font-size: 11px; } &.checkbox { padding: 0 8px 7px; input { margin: 2px 0; } } /* smaller treedropdown */ .chzn-container-single .chzn-single { height: 24px; line-height: 24px; font-size: 11px; div b { background-position: 4px 0; } } } /* buttons now need to line with with reduced input sizes */ .ss-ui-button { padding: 5px $grid-horizontal; } .fieldgroup { .fieldgroup-field { width: auto; padding: 0; .field { margin: 0; padding: 0; } } } table { margin: 8px -4px; thead { th { color: $color-text-dark; font-weight: bold; line-height: 16px; font-size: 11px; padding: 4px; } } tr { &.active { background-color: $color-menu-button; color: $color-text-light; td.first-column { @include border-radius(6px 0 0 6px); } td.last-column { @include border-radius(0 6px 6px 0); } } } td { padding: 4px; line-height: 16px; vertical-align: top; } } td { border-bottom: 1px solid darken($color-widget-bg, 10%); padding: $grid-vertical - 1 2px; font-size: 11px; } } /** * CMS Batch actions */ .cms-content-batchactions, .cms-content-constructive-actions { float: right; } .cms-content-batchactions { float: right; position: relative; display: block; margin-right: 8px; form > * { display: block; float: left; } form.cms-batch-actions { float: left; } } .cms-content-constructive-actions a { display: block; float: right; } /** -------------------------------------------- * Preview header (remove before release) * -------------------------------------------- */ .cms-preview { width: 1px; // collapsed by default z-index: 100; .cms-preview-toggle { width: 10px; } .cms-preview-overlay { } iframe { width: 100%; height: 100%; } .cms-preview-controls { z-index: 99; background: $color-widget-bg; padding: 10px; min-height: 30px; .cms-navigator { width: 100%; * { display: inline-block; } } .cms-preview-states { margin-right: 10px; } .cms-preview-popup-link { display: inline-block; } .cms-preview-toggle-link { float: right; font-size: 11px; } } } .cms-preview-header { background-color: #FFBE66; padding: 10px; font-weight: bold; } /** -------------------------------------------- * Member Profile * -------------------------------------------- */ form.member-profile-form { #CsvFile .middleColumn { background: none !important; } .advanced h4 { margin-bottom: .5em; } .Actions { text-align: left; border: 0; } input.customFormat { border: 1px solid #ccc !important; padding: 3px; margin-left: 2px; } .formattingHelpToggle { font-size: 11px; padding: 3px; } .formattingHelpText { margin: 5px auto; color: #333; padding: 5px 10px; width: 90%; background: #fff; border: 1px solid #ccc; } .formattingHelpText ul { padding: 0; } .formattingHelpText li { font-size: 11px; color: #333; margin-bottom: 2px; } } .cms { .cms-content { border-right: 1px solid $color-light-separator; @include box-shadow(3px 0 4px rgba(0,0,0,0.15)); @include border-radius(0); } .cms-content-fields { /* always show a y scroll bar as popups like TreeDropdowns can trigger longer pages and the extra scroll bar doesn't fire our sizing bar */ overflow-y: scroll; overflow-x: auto; background: none; } } /** -------------------------------------------- * Panels * -------------------------------------------- */ .cms-panel { overflow: hidden; .toggle-expand, .toggle-collapse { display: block; position: absolute; bottom: 0; text-align: right; @include background-image( linear-gradient(darken($color-widget-bg, 20%), darken($color-widget-bg, 30%)) ); text-decoration: none; span { display: inline-block; margin: 5px; color: $color-text-dark; font-size: 16px; } } .toggle-collapse { width: 100%; } .toggle-expand { width: 40px; // will set the collapsed width } &.collapsed { .cms-panel-content { display: none; } .cms-panel-header { @include rotate(-90deg); position: relative; top: $grid-vertical * 10; border: none; padding: 0; } } } .cms-content .cms-panel.collapsed { cursor: pointer; } /** -------------------------------------------- * Other * -------------------------------------------- */ .cms-preview { .cms-preview-toggle { cursor: pointer; a { display: block; padding: 2px 12px 2px 6px; height: 16px; position: relative; top: 48%; background-color: $color-base; color: $color-text-light; font-weight: bold; text-decoration: none; z-index: 2000; line-height: 16px; @include border-bottom-right-radius(4px); @include border-top-right-radius(4px); @include box-shadow(0 0 10px rgba(180, 180,180,0.4)); } } &.is-collapsed { .cms-preview-toggle { a { left: -15px; // point left } } } } .cms-switch-view { a { padding-right: 1em; } } /** ------------------------------------------------------------------ * Modal - JQuery UI Dialog pop-up * ----------------------------------------------------------------- */ /* default overlay for the CMS */ .cms .ui-widget-overlay-default { } /* Adjusting the color of the background overlay to be darker. */ .cms .ui-widget-overlay { background-color: #000; background-image: none; } $DialogHeaderColor: #5F6160; $DialogHeaderFontSize: 14px; $DialogBorderRadius: 8px; .ui-dialog { background: url("../images/textures/bg_cms_main_content.png") repeat left top #F0F3F4; border: 3px solid #000 !important; border-radius: $DialogBorderRadius; overflow: visible; padding: 0; #PageType { .middleColumn { margin: 0; padding: 0; .optionset li { width: 100%; } } li { &.selected { background-color: rgba(255,255,153, 0.5); /*background-color: #FFFF99;*/ } &:hover { background-color: #FFFF99 !important; /* lighter highlight on hover */ } } } /* Labels for all the Dialogs of the pop-up form */ .field label.left { font-size: $DialogHeaderFontSize; font-weight: bold; width: 100%; float: none; color: $DialogHeaderColor; } /* Exception for a label that is inline with the selector dropdown box */ #ParentID { label.left { padding: 8px 0 8px 0; float: right !important; } } .Actions { float: right; margin: 0; } } /** ------------------------------------------------------------------ * Titlebar for pop-up dialog. * ----------------------------------------------------------------- */ @import "compass"; @import "compass/css3"; @import "compass/utilities"; .ui-dialog-titlebar.ui-widget-header { font-size: $DialogHeaderFontSize; background-color: #b0bec7; padding: 8px 8px 6px 16px; border-bottom: 2px solid #8399a7; border-radius: $DialogBorderRadius/2 $DialogBorderRadius 0 0; @include background-image(linear-gradient(#ced7dc, #92a5b2)); }