From 7dce81b4d1416579c8b369b8b5ff4359e2022323 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Mon, 21 Aug 2017 14:37:23 +0200 Subject: [PATCH 1/3] Simplify ``contents.plone.less``. + Bugfix contenttype icons duplication from PR #141. --- CHANGES.rst | 5 +- .../theme/less/contents.plone.less | 84 +++++-------------- 2 files changed, 25 insertions(+), 64 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3d46a9e6..c7137e11 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,7 +7,10 @@ Changelog Breaking changes: -- *add item here* +- Simplify ``contents.plone.less``. + Contenttype icons now use the ``::before`` instead of ``::after`` pseudo element selector. + [thet] + New features: diff --git a/plonetheme/barceloneta/theme/less/contents.plone.less b/plonetheme/barceloneta/theme/less/contents.plone.less index 0c519390..9922f677 100644 --- a/plonetheme/barceloneta/theme/less/contents.plone.less +++ b/plonetheme/barceloneta/theme/less/contents.plone.less @@ -1,67 +1,7 @@ -//*// CONTENTS //*// +//*// CONTENTTYPE ICONS //*// -:not(#edit-zone) { - // Any, but toolbar - - [class*="contenttype-"]:before { - font-family:"Fontello"; - font-size: 100%; - padding: 0; - margin:0; - position: relative; - left: inherit; - display: inline-block; - color: inherit; - width: 20px; - height: 20px; - text-align: center; - margin-right: @plone-padding-base-vertical; - content: '\e834'; - } - .contenttype-folder:before { content: '\e801'; } - .contenttype-document:before { content: '\e80e'; } - .contenttype-file:before { content: none; } - .contenttype-link:before { content: '\e806'; } - .contenttype-image:before { content: '\e810'; } - .contenttype-collection:before { content: '\e808'; } - .contenttype-event:before { content: '\e809'; } - .contenttype-news-item:before { content: '\e80f'; } -} - -#edit-zone { - // Toolbar only - - [class*="contenttype-"] { padding: 5px 15px 5px 50px; } - - a { color: @plone-btn-context-color; } - [class*="contenttype-"]:after { - font-family:"Fontello"; - font-size: 100%; - padding: 0; - margin:0; - position: relative; - left: 25px; - display: inline-block; - color: inherit; - width: 20px; - height: 20px; - text-align: center; - margin-right: @plone-padding-base-vertical; - position:absolute; - content: '\e834'; - } - .contenttype-folder:after { content: '\e801'; } - .contenttype-document:after { content: '\e80e'; } - .contenttype-file:after { content: '\e811'; } - .contenttype-link:after { content: '\e806'; } - .contenttype-image:after { content: '\e810'; } - .contenttype-collection:after { content: '\e808'; } - .contenttype-event:after { content: '\e809'; } - .contenttype-news-item:after { content: '\e80f'; } -} - -.contenttype-file #crud-edit-File-widgets-view_title:before { - content: '\e811'; +[class*="contenttype-"]::before, +.contenttype-file #crud-edit-File-widgets-view_title::before { font-family:"Fontello"; font-size: 100%; padding: 0; @@ -74,6 +14,24 @@ height: 20px; text-align: center; margin-right: @plone-padding-base-vertical; + content: '\e834'; +} + +.contenttype-folder::before { content: '\e801'; } +.contenttype-document::before { content: '\e80e'; } +.contenttype-file::before { content: '\e811'; } +.contenttype-link::before { content: '\e806'; } +.contenttype-image::before { content: '\e810'; } +.contenttype-collection::before { content: '\e808'; } +.contenttype-event::before { content: '\e809'; } +.contenttype-news-item::before { content: '\e80f'; } + +.outer-wrapper { + .contenttype-file::before { content: none; } +} + +.contenttype-file #crud-edit-File-widgets-view_title::before { + content: '\e811'; } .mime-icon { margin-right:8px; } From 08e2bedb30dbc56b07d77196b4952e4ca3a0ddc1 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Mon, 21 Aug 2017 14:55:52 +0200 Subject: [PATCH 2/3] Change :before and :after to ::before and ::after to follow CSS3 specs. --- CHANGES.rst | 3 ++- .../barceloneta/theme/less/alerts.plone.less | 10 +++++----- .../theme/less/breadcrumbs.plone.less | 4 ++-- .../barceloneta/theme/less/buttons.plone.less | 2 +- .../theme/less/controlpanels.plone.less | 6 +++--- .../barceloneta/theme/less/event.plone.less | 12 ++++++------ .../barceloneta/theme/less/footer.plone.less | 2 +- .../barceloneta/theme/less/forms.plone.less | 4 ++-- .../theme/less/mixin.clearfix.plone.less | 6 +++--- .../barceloneta/theme/less/portlets.plone.less | 16 ++++++++-------- .../barceloneta/theme/less/print.plone.less | 8 ++++---- .../theme/less/scaffolding.plone.less | 4 ++-- .../barceloneta/theme/less/sitemap.plone.less | 2 +- .../barceloneta/theme/less/sitenav.plone.less | 4 ++-- .../barceloneta/theme/less/tables.plone.less | 2 +- .../barceloneta/theme/less/views.plone.less | 2 +- 16 files changed, 44 insertions(+), 43 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c7137e11..4aa75a95 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,7 +21,8 @@ New features: Bug fixes: -- *add item here* +- Change ``:before`` and ``:after`` to ``::before`` and ``::after`` to follow CSS3 specs. + [thet] 1.7.3 (2017-07-04) diff --git a/plonetheme/barceloneta/theme/less/alerts.plone.less b/plonetheme/barceloneta/theme/less/alerts.plone.less index afcc69f7..ea95c30b 100644 --- a/plonetheme/barceloneta/theme/less/alerts.plone.less +++ b/plonetheme/barceloneta/theme/less/alerts.plone.less @@ -27,7 +27,7 @@ font-weight: @plone-alert-link-font-weight; color: darken(@plone-link-color, 12%); } - > strong:before, > dt:before { + > strong::before, > dt::before { font-size:@plone-font-size-base; font-weight: @plone-font-weight-regular; margin-left: -30px; @@ -52,17 +52,17 @@ &.alert-success, &.info { .portalMessage-variant(@plone-alert-info-bg; @plone-alert-info-border; @plone-alert-info-text); - & > strong:before, & > dt:before {background-color: @plone-alert-info-bullet; content:"i";} + & > strong::before, & > dt::before {background-color: @plone-alert-info-bullet; content:"i";} } &.alert-warning, &.warning { .portalMessage-variant(@plone-alert-warning-bg; @plone-alert-warning-border; @plone-alert-warning-text); - & > strong:before, & > dt:before {background-color: @plone-alert-warning-bullet; content:"!";} + & > strong::before, & > dt::before {background-color: @plone-alert-warning-bullet; content:"!";} } &.alert-error, &.error { .portalMessage-variant(@plone-alert-error-bg; @plone-alert-error-border; @plone-alert-error-text); - & > strong:before, & > dt:before {background-color: @plone-alert-error-bullet; content:"×";} + & > strong::before, & > dt::before {background-color: @plone-alert-error-bullet; content:"×";} } } .portlet .portletContent > .portalMessage { @@ -75,7 +75,7 @@ /* special octogonal shape for error .alert.status.alert-error, .portalMessage.error { - & > strong:before, & > dt:before { + & > strong::before, & > dt::before { border-radius: 8px; //soften border background: @plone-alert-error-bullet; background: diff --git a/plonetheme/barceloneta/theme/less/breadcrumbs.plone.less b/plonetheme/barceloneta/theme/less/breadcrumbs.plone.less index 0c33a7ab..444c410f 100644 --- a/plonetheme/barceloneta/theme/less/breadcrumbs.plone.less +++ b/plonetheme/barceloneta/theme/less/breadcrumbs.plone.less @@ -25,7 +25,7 @@ line-height: 0; // match ol & span height position: relative; padding: 0 @plone-breadcrumb-padding-horizontal*2 0 0; - + li:after { + + li::after { content: ""; position: absolute; padding: 0 5px; @@ -37,7 +37,7 @@ top: -15px; padding: 0 !important; } - + li:before { + + li::before { content: ""; position: absolute; padding: 0 5px; diff --git a/plonetheme/barceloneta/theme/less/buttons.plone.less b/plonetheme/barceloneta/theme/less/buttons.plone.less index ea04aa1a..d0ab1d58 100644 --- a/plonetheme/barceloneta/theme/less/buttons.plone.less +++ b/plonetheme/barceloneta/theme/less/buttons.plone.less @@ -60,7 +60,7 @@ .link-parent { .standalone; margin-bottom: @plone-padding-base-horizontal; - &:before {content: "↩ ";top: 3px;position: relative;} + &::before {content: "↩ ";top: 3px;position: relative;} } diff --git a/plonetheme/barceloneta/theme/less/controlpanels.plone.less b/plonetheme/barceloneta/theme/less/controlpanels.plone.less index 64194751..544d6f67 100644 --- a/plonetheme/barceloneta/theme/less/controlpanels.plone.less +++ b/plonetheme/barceloneta/theme/less/controlpanels.plone.less @@ -1,5 +1,5 @@ //*// Site Setup -.portlet.portletSiteSetup .portletContent > ul > li a:before {content:"";} +.portlet.portletSiteSetup .portletContent > ul > li a::before {content:"";} .portlet.portletSiteSetup .portletContent > ul li:hover {background: #edecec;} .portletNavigationTree { // nav.portletContent > ul > li a {border:none; padding:0px;} @@ -26,7 +26,7 @@ } ul {background: #edecec; padding-bottom: 20px;} li {vertical-align: top;} - ul > li > a:hover:after {content:""} + ul > li > a:hover::after {content:""} .inner-configlet { margin-top: 10px; padding-bottom: 10px; &:hover { @@ -49,7 +49,7 @@ a { text-align: inherit; padding-left: 40px; - &:before { + &::before { content:"•"; position: absolute; font-size: @plone-font-size-h3+1; margin-top: -9px; left: 15px; color: lighten(@plone-portlet-list-bullet, 15%); } diff --git a/plonetheme/barceloneta/theme/less/event.plone.less b/plonetheme/barceloneta/theme/less/event.plone.less index 329f875f..873fabab 100644 --- a/plonetheme/barceloneta/theme/less/event.plone.less +++ b/plonetheme/barceloneta/theme/less/event.plone.less @@ -46,7 +46,7 @@ position: relative; border-top-left-radius: 0; padding-left: 6px; - &:before { + &::before { content: ""; position: absolute; padding: 0 5px; @@ -58,7 +58,7 @@ top: -1px; padding: 0 !important; } - &:after { + &::after { content: ""; position: absolute; padding: 0 5px; @@ -70,7 +70,7 @@ top: -1px; padding: 0 !important; } - &:hover:after { + &:hover::after { color: @plone-portlet-content-bg; } } @@ -78,7 +78,7 @@ position: relative; border-top-right-radius: 0; padding-right: 6px; - &:before { + &::before { content: ""; position: absolute; padding: 0 5px; @@ -90,7 +90,7 @@ top: -1px; padding: 0 !important; } - &:after { + &::after { content: ""; position: absolute; padding: 0 5px; @@ -102,7 +102,7 @@ top: -1px; padding: 0 !important; } - &:hover:after { + &:hover::after { color: @plone-portlet-content-bg; } } diff --git a/plonetheme/barceloneta/theme/less/footer.plone.less b/plonetheme/barceloneta/theme/less/footer.plone.less index d7191209..ed97ce01 100644 --- a/plonetheme/barceloneta/theme/less/footer.plone.less +++ b/plonetheme/barceloneta/theme/less/footer.plone.less @@ -48,7 +48,7 @@ &#portal-colophon .portletContent a { //remove if remove Powered by Plone padding: 10px 30px; } - .portletItem:before, .portletItem a:before { + .portletItem::before, .portletItem a::before { content: ""; } .portletItem a { diff --git a/plonetheme/barceloneta/theme/less/forms.plone.less b/plonetheme/barceloneta/theme/less/forms.plone.less index 00410f98..1f0a59d9 100644 --- a/plonetheme/barceloneta/theme/less/forms.plone.less +++ b/plonetheme/barceloneta/theme/less/forms.plone.less @@ -199,7 +199,7 @@ input[type="checkbox"] { div.error { padding-left: 30px; font-weight: @plone-font-weight-regular; - &:before { + &::before { background-color: @plone-alert-error-bullet; content:"×"; font-size:@plone-font-size-base; font-weight: @plone-font-weight-regular; @@ -251,7 +251,7 @@ input[type="checkbox"] { //*// Required label .required { - &:after{ + &::after{ color: @plone-toolbar-private-color; content:"•"; font-size: 200%; diff --git a/plonetheme/barceloneta/theme/less/mixin.clearfix.plone.less b/plonetheme/barceloneta/theme/less/mixin.clearfix.plone.less index a340981f..56a2b1fc 100644 --- a/plonetheme/barceloneta/theme/less/mixin.clearfix.plone.less +++ b/plonetheme/barceloneta/theme/less/mixin.clearfix.plone.less @@ -1,12 +1,12 @@ //*// MIXIN CLEARFIX //*// .clearfix() { - &:before, - &:after { + &::before, + &::after { content: " "; // 1 display: table; // 2 } - &:after { + &::after { clear: both; } } \ No newline at end of file diff --git a/plonetheme/barceloneta/theme/less/portlets.plone.less b/plonetheme/barceloneta/theme/less/portlets.plone.less index 6a441a74..051e92d9 100644 --- a/plonetheme/barceloneta/theme/less/portlets.plone.less +++ b/plonetheme/barceloneta/theme/less/portlets.plone.less @@ -76,7 +76,7 @@ color: @plone-portlet-list-small-text; } li:hover {background: @plone-portlet-list-hover-bg; - a:before {color: @plone-portlet-list-bullet;} + a::before {color: @plone-portlet-list-bullet;} } } } @@ -89,7 +89,7 @@ .cal_has_events { position: relative; a:hover {background: @plone-portlet-event-bullet; text-decoration: none; box-shadow: 0 0 0 5px @plone-portlet-event-bullet;} - a:after { + a::after { content: "•"; position: absolute; margin-left: 50%; @@ -98,15 +98,15 @@ color: lighten(@plone-portlet-list-bullet, 15%); margin-top: 9px; } - a:hover:after {color: @plone-portlet-list-bullet;} + a:hover::after {color: @plone-portlet-list-bullet;} } .cal_next_month, .cal_prev_month { color: #000; &.cal_has_events > a {color: lighten(@plone-portlet-list-bullet, 15%);} - &.cal_has_events > a:after {color: lighten(@plone-portlet-list-bullet, 25%);} + &.cal_has_events > a::after {color: lighten(@plone-portlet-list-bullet, 25%);} &.cal_has_events > a:hover {color: darken(@plone-link-color,15%);} - &.cal_has_events > a:hover:after {color: @plone-portlet-list-bullet;} + &.cal_has_events > a:hover::after {color: @plone-portlet-list-bullet;} } .today > * {background: @plone-portlet-contrast-bg; font-weight: 500; box-shadow: 0 0 0 5px @plone-portlet-contrast-bg; color: #000;} //using shadow to expand background is because then table is only 20px per cell and not 30px tbody tr:first-child td > * {margin-top: 10px;} @@ -131,14 +131,14 @@ .portletContent { border-top: 0; > ul > li > a {display: block; background: darken(@plone-portlet-header-bg, 2%); - &:before {content: ""; } + &::before {content: ""; } &:hover {background: @plone-portlet-footer-bg;} - &:hover:after {content:"⟩"; position: absolute; right: 10px; font-size: @plone-font-size-large; margin-top: -3px; color: @plone-gray-light;} + &:hover::after {content:"⟩"; position: absolute; right: 10px; font-size: @plone-font-size-large; margin-top: -3px; color: @plone-gray-light;} } > ul > li > ul a {padding-left:40px;} > ul ul {padding-left: 0;} .navTreeCurrentNode > a {background: @plone-portlet-footer-bg; color: @plone-gray; - &:after {content:"⟩"; position: absolute; right: 10px; font-size: @plone-font-size-large; margin-top: -3px; color: @plone-gray-light;} + &::after {content:"⟩"; position: absolute; right: 10px; font-size: @plone-font-size-large; margin-top: -3px; color: @plone-gray-light;} } } } diff --git a/plonetheme/barceloneta/theme/less/print.plone.less b/plonetheme/barceloneta/theme/less/print.plone.less index 51594df8..ffd4f4ee 100644 --- a/plonetheme/barceloneta/theme/less/print.plone.less +++ b/plonetheme/barceloneta/theme/less/print.plone.less @@ -17,17 +17,17 @@ text-decoration: underline; } - a[href]:after { + a[href]::after { content: " (" attr(href) ")"; } - abbr[title]:after { + abbr[title]::after { content: " (" attr(title) ")"; } // Don't show links for images, or javascript/internal links - a[href^="javascript:"]:after, - a[href^="#"]:after { + a[href^="javascript:"]::after, + a[href^="#"]::after { content: ""; } diff --git a/plonetheme/barceloneta/theme/less/scaffolding.plone.less b/plonetheme/barceloneta/theme/less/scaffolding.plone.less index b18f88fb..fb70186e 100644 --- a/plonetheme/barceloneta/theme/less/scaffolding.plone.less +++ b/plonetheme/barceloneta/theme/less/scaffolding.plone.less @@ -4,8 +4,8 @@ * { .box-sizing(border-box); } -*:before, -*:after { +*::before, +*::after { .box-sizing(border-box); } diff --git a/plonetheme/barceloneta/theme/less/sitemap.plone.less b/plonetheme/barceloneta/theme/less/sitemap.plone.less index f25d32c7..8266d03e 100644 --- a/plonetheme/barceloneta/theme/less/sitemap.plone.less +++ b/plonetheme/barceloneta/theme/less/sitemap.plone.less @@ -16,7 +16,7 @@ & li { position: relative; } - & li:before { + & li::before { content: "•"; display: inline; font-size: @plone-font-size-h3+1; diff --git a/plonetheme/barceloneta/theme/less/sitenav.plone.less b/plonetheme/barceloneta/theme/less/sitenav.plone.less index 5ca65c69..c288a5d6 100644 --- a/plonetheme/barceloneta/theme/less/sitenav.plone.less +++ b/plonetheme/barceloneta/theme/less/sitenav.plone.less @@ -132,12 +132,12 @@ */ // Menu (That option with a word, witch is language-dependant, is to ensure a higher tap ratio on the menu) - .icon-bar:after { + .icon-bar::after { content:"Menu"; position: relative; color: white; } - .icon-bar + .icon-bar:after {content: "";} + .icon-bar + .icon-bar::after {content: "";} //end menu icon-bar @media (min-width: @plone-grid-float-breakpoint) { diff --git a/plonetheme/barceloneta/theme/less/tables.plone.less b/plonetheme/barceloneta/theme/less/tables.plone.less index f1d6ab7d..c21dfda7 100644 --- a/plonetheme/barceloneta/theme/less/tables.plone.less +++ b/plonetheme/barceloneta/theme/less/tables.plone.less @@ -93,7 +93,7 @@ th { text-align: left; color: @plone-gray-dark;} -webkit-overflow-scrolling: touch; position: relative; // scroll marker, it appears when we have active the mobile class - &:after {content:"⟷"; position:fixed; color:@plone-gray-lighter; margin-top:-3px} + &::after {content:"⟷"; position:fixed; color:@plone-gray-lighter; margin-top:-3px} // Tighten up spacing > .listing { margin-bottom: 0; diff --git a/plonetheme/barceloneta/theme/less/views.plone.less b/plonetheme/barceloneta/theme/less/views.plone.less index 53b21d4a..f8dc14b1 100644 --- a/plonetheme/barceloneta/theme/less/views.plone.less +++ b/plonetheme/barceloneta/theme/less/views.plone.less @@ -9,7 +9,7 @@ padding-left: 20px; //need to add a list portlets-like bullet li {margin: 10px 0;} - > li:before { + > li::before { content:"•"; position: absolute; font-size: @plone-font-size-large+1; margin-top: -9px; left: 0; color: lighten(@plone-portlet-list-bullet, 15%); } From e1a7294d5895253f9c33b50a5ec78883e7db97bf Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Mon, 21 Aug 2017 14:37:30 +0200 Subject: [PATCH 3/3] compiled --- .../theme/less/barceloneta-compiled.css | 316 ++++++++---------- .../theme/less/barceloneta-compiled.css.map | 2 +- 2 files changed, 132 insertions(+), 186 deletions(-) diff --git a/plonetheme/barceloneta/theme/less/barceloneta-compiled.css b/plonetheme/barceloneta/theme/less/barceloneta-compiled.css index a12a96db..27b63d21 100644 --- a/plonetheme/barceloneta/theme/less/barceloneta-compiled.css +++ b/plonetheme/barceloneta/theme/less/barceloneta-compiled.css @@ -258,14 +258,14 @@ th { a:visited { text-decoration: underline; } - a[href]:after { + a[href]::after { content: " (" attr(href) ")"; } - abbr[title]:after { + abbr[title]::after { content: " (" attr(title) ")"; } - a[href^="javascript:"]:after, - a[href^="#"]:after { + a[href^="javascript:"]::after, + a[href^="#"]::after { content: ""; } pre, @@ -332,8 +332,8 @@ th { -moz-box-sizing: border-box; box-sizing: border-box; } -*:before, -*:after { +*::before, +*::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; @@ -614,12 +614,12 @@ pre code { margin-left: -15px; margin-right: -15px; } -.row:before, -.row:after { +.row::before, +.row::after { content: " "; display: table; } -.row:after { +.row::after { clear: both; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { @@ -1360,7 +1360,7 @@ th { -webkit-overflow-scrolling: touch; position: relative; } - .plone-has-table:after { + .plone-has-table::after { content: "⟷"; position: fixed; color: #cccccc; @@ -1651,7 +1651,7 @@ fieldset[disabled] input[type="checkbox"] { padding-left: 30px; font-weight: 400; } -.field.error div.error:before { +.field.error div.error::before { background-color: #ac493f; content: "×"; font-size: 14px; @@ -1699,7 +1699,7 @@ fieldset[disabled] input[type="checkbox"] { padding: 0; box-shadow: none; } -label .required:after { +label .required::after { color: #c4183c; content: "•"; font-size: 200%; @@ -2113,7 +2113,7 @@ fieldset[disabled] .link-parent.active { color: #e5e5e5; background-color: #4d4d4d; } -.link-parent:before { +.link-parent::before { content: "↩ "; top: 3px; position: relative; @@ -2291,7 +2291,7 @@ fieldset[disabled] .link-parent.active { position: relative; padding: 0 30px 0 0; } -.plone-breadcrumb ol > li + li:after { +.plone-breadcrumb ol > li + li::after { content: ""; position: absolute; padding: 0 5px; @@ -2303,7 +2303,7 @@ fieldset[disabled] .link-parent.active { top: -15px; padding: 0 !important; } -.plone-breadcrumb ol > li + li:before { +.plone-breadcrumb ol > li + li::before { content: ""; position: absolute; padding: 0 5px; @@ -2470,7 +2470,7 @@ fieldset[disabled] .link-parent.active { .folder-listing li { margin: 10px 0; } -.folder-listing > li:before { +.folder-listing > li::before { content: "•"; position: absolute; font-size: 19px; @@ -2555,10 +2555,10 @@ fieldset[disabled] .link-parent.active { font-weight: 400; color: #005074; } -.alert.status > strong:before, -.portalMessage > strong:before, -.alert.status > dt:before, -.portalMessage > dt:before { +.alert.status > strong::before, +.portalMessage > strong::before, +.alert.status > dt::before, +.portalMessage > dt::before { font-size: 14px; font-weight: 400; margin-left: -30px; @@ -2606,14 +2606,14 @@ fieldset[disabled] .link-parent.active { .portalMessage.info > dt { color: rgba(0, 0, 0, 0.67); } -.alert.status.alert-success > strong:before, -.portalMessage.alert-success > strong:before, -.alert.status.info > strong:before, -.portalMessage.info > strong:before, -.alert.status.alert-success > dt:before, -.portalMessage.alert-success > dt:before, -.alert.status.info > dt:before, -.portalMessage.info > dt:before { +.alert.status.alert-success > strong::before, +.portalMessage.alert-success > strong::before, +.alert.status.info > strong::before, +.portalMessage.info > strong::before, +.alert.status.alert-success > dt::before, +.portalMessage.alert-success > dt::before, +.alert.status.info > dt::before, +.portalMessage.info > dt::before { background-color: #3e7b91; content: "i"; } @@ -2635,14 +2635,14 @@ fieldset[disabled] .link-parent.active { .portalMessage.warning > dt { color: rgba(0, 0, 0, 0.67); } -.alert.status.alert-warning > strong:before, -.portalMessage.alert-warning > strong:before, -.alert.status.warning > strong:before, -.portalMessage.warning > strong:before, -.alert.status.alert-warning > dt:before, -.portalMessage.alert-warning > dt:before, -.alert.status.warning > dt:before, -.portalMessage.warning > dt:before { +.alert.status.alert-warning > strong::before, +.portalMessage.alert-warning > strong::before, +.alert.status.warning > strong::before, +.portalMessage.warning > strong::before, +.alert.status.alert-warning > dt::before, +.portalMessage.alert-warning > dt::before, +.alert.status.warning > dt::before, +.portalMessage.warning > dt::before { background-color: #bc8d0d; content: "!"; } @@ -2664,14 +2664,14 @@ fieldset[disabled] .link-parent.active { .portalMessage.error > dt { color: rgba(0, 0, 0, 0.67); } -.alert.status.alert-error > strong:before, -.portalMessage.alert-error > strong:before, -.alert.status.error > strong:before, -.portalMessage.error > strong:before, -.alert.status.alert-error > dt:before, -.portalMessage.alert-error > dt:before, -.alert.status.error > dt:before, -.portalMessage.error > dt:before { +.alert.status.alert-error > strong::before, +.portalMessage.alert-error > strong::before, +.alert.status.error > strong::before, +.portalMessage.error > strong::before, +.alert.status.alert-error > dt::before, +.portalMessage.alert-error > dt::before, +.alert.status.error > dt::before, +.portalMessage.error > dt::before { background-color: #ac493f; content: "×"; } @@ -2683,7 +2683,7 @@ fieldset[disabled] .link-parent.active { /* special octogonal shape for error .alert.status.alert-error, .portalMessage.error { - & > strong:before, & > dt:before { + & > strong::before, & > dt::before { border-radius: 8px; //soften border background: @plone-alert-error-bullet; background: @@ -2792,7 +2792,7 @@ fieldset[disabled] .link-parent.active { .portlet .portletContent > ul li:hover { background: #fcfcfd; } -.portlet .portletContent > ul li:hover a:before { +.portlet .portletContent > ul li:hover a::before { color: #64bee8; } .portlet.portletCalendar table { @@ -2830,7 +2830,7 @@ fieldset[disabled] .link-parent.active { text-decoration: none; box-shadow: 0 0 0 5px #dbecfe; } -.portlet.portletCalendar table .cal_has_events a:after { +.portlet.portletCalendar table .cal_has_events a::after { content: "•"; position: absolute; margin-left: 50%; @@ -2839,7 +2839,7 @@ fieldset[disabled] .link-parent.active { color: #a7daf2; margin-top: 9px; } -.portlet.portletCalendar table .cal_has_events a:hover:after { +.portlet.portletCalendar table .cal_has_events a:hover::after { color: #64bee8; } .portlet.portletCalendar table .cal_next_month, @@ -2850,16 +2850,16 @@ fieldset[disabled] .link-parent.active { .portlet.portletCalendar table .cal_prev_month.cal_has_events > a { color: #a7daf2; } -.portlet.portletCalendar table .cal_next_month.cal_has_events > a:after, -.portlet.portletCalendar table .cal_prev_month.cal_has_events > a:after { +.portlet.portletCalendar table .cal_next_month.cal_has_events > a::after, +.portlet.portletCalendar table .cal_prev_month.cal_has_events > a::after { color: #d3edf8; } .portlet.portletCalendar table .cal_next_month.cal_has_events > a:hover, .portlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover { color: #004665; } -.portlet.portletCalendar table .cal_next_month.cal_has_events > a:hover:after, -.portlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover:after { +.portlet.portletCalendar table .cal_next_month.cal_has_events > a:hover::after, +.portlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover::after { color: #64bee8; } .portlet.portletCalendar table .today > * { @@ -2907,13 +2907,13 @@ fieldset[disabled] .link-parent.active { display: block; background: #edecec; } -.portletNavigationTree .portletContent > ul > li > a:before { +.portletNavigationTree .portletContent > ul > li > a::before { content: ""; } .portletNavigationTree .portletContent > ul > li > a:hover { background: #fcfcfd; } -.portletNavigationTree .portletContent > ul > li > a:hover:after { +.portletNavigationTree .portletContent > ul > li > a:hover::after { content: "⟩"; position: absolute; right: 10px; @@ -2931,7 +2931,7 @@ fieldset[disabled] .link-parent.active { background: #fcfcfd; color: #696969; } -.portletNavigationTree .portletContent .navTreeCurrentNode > a:after { +.portletNavigationTree .portletContent .navTreeCurrentNode > a::after { content: "⟩"; position: absolute; right: 10px; @@ -3081,7 +3081,7 @@ fieldset[disabled] .link-parent.active { .managedPortlet .portletContent > ul li:hover { background: #fcfcfd; } -.managedPortlet .portletContent > ul li:hover a:before { +.managedPortlet .portletContent > ul li:hover a::before { color: #64bee8; } .managedPortlet.portletCalendar table { @@ -3119,7 +3119,7 @@ fieldset[disabled] .link-parent.active { text-decoration: none; box-shadow: 0 0 0 5px #dbecfe; } -.managedPortlet.portletCalendar table .cal_has_events a:after { +.managedPortlet.portletCalendar table .cal_has_events a::after { content: "•"; position: absolute; margin-left: 50%; @@ -3128,7 +3128,7 @@ fieldset[disabled] .link-parent.active { color: #a7daf2; margin-top: 9px; } -.managedPortlet.portletCalendar table .cal_has_events a:hover:after { +.managedPortlet.portletCalendar table .cal_has_events a:hover::after { color: #64bee8; } .managedPortlet.portletCalendar table .cal_next_month, @@ -3139,16 +3139,16 @@ fieldset[disabled] .link-parent.active { .managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a { color: #a7daf2; } -.managedPortlet.portletCalendar table .cal_next_month.cal_has_events > a:after, -.managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a:after { +.managedPortlet.portletCalendar table .cal_next_month.cal_has_events > a::after, +.managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a::after { color: #d3edf8; } .managedPortlet.portletCalendar table .cal_next_month.cal_has_events > a:hover, .managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover { color: #004665; } -.managedPortlet.portletCalendar table .cal_next_month.cal_has_events > a:hover:after, -.managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover:after { +.managedPortlet.portletCalendar table .cal_next_month.cal_has_events > a:hover::after, +.managedPortlet.portletCalendar table .cal_prev_month.cal_has_events > a:hover::after { color: #64bee8; } .managedPortlet.portletCalendar table .today > * { @@ -3196,7 +3196,7 @@ fieldset[disabled] .link-parent.active { .managedPortletActions form { display: inline-block; } -.portlet.portletSiteSetup .portletContent > ul > li a:before { +.portlet.portletSiteSetup .portletContent > ul > li a::before { content: ""; } .portlet.portletSiteSetup .portletContent > ul li:hover { @@ -3229,7 +3229,7 @@ fieldset[disabled] .link-parent.active { .portletNavigationTree.portletSiteSetup li { vertical-align: top; } -.portletNavigationTree.portletSiteSetup ul > li > a:hover:after { +.portletNavigationTree.portletSiteSetup ul > li > a:hover::after { content: ""; } .portletNavigationTree.portletSiteSetup .inner-configlet { @@ -3257,7 +3257,7 @@ fieldset[disabled] .link-parent.active { text-align: inherit; padding-left: 40px; } -#portlet-prefs ul ul li a:before { +#portlet-prefs ul ul li a::before { content: "•"; position: absolute; font-size: 25px; @@ -3348,7 +3348,8 @@ a.link-category:focus { #category li { display: inline-block; } -:not(#edit-zone) [class*="contenttype-"]:before { +[class*="contenttype-"]::before, +.contenttype-file #crud-edit-File-widgets-view_title::before { font-family: "Fontello"; font-size: 100%; padding: 0; @@ -3363,90 +3364,35 @@ a.link-category:focus { margin-right: 6px; content: '\e834'; } -:not(#edit-zone) .contenttype-folder:before { +.contenttype-folder::before { content: '\e801'; } -:not(#edit-zone) .contenttype-document:before { +.contenttype-document::before { content: '\e80e'; } -:not(#edit-zone) .contenttype-file:before { - content: none; -} -:not(#edit-zone) .contenttype-link:before { - content: '\e806'; -} -:not(#edit-zone) .contenttype-image:before { - content: '\e810'; -} -:not(#edit-zone) .contenttype-collection:before { - content: '\e808'; -} -:not(#edit-zone) .contenttype-event:before { - content: '\e809'; -} -:not(#edit-zone) .contenttype-news-item:before { - content: '\e80f'; -} -#edit-zone [class*="contenttype-"] { - padding: 5px 15px 5px 50px; -} -#edit-zone a { - color: #fff; -} -#edit-zone [class*="contenttype-"]:after { - font-family: "Fontello"; - font-size: 100%; - padding: 0; - margin: 0; - position: relative; - left: 25px; - display: inline-block; - color: inherit; - width: 20px; - height: 20px; - text-align: center; - margin-right: 6px; - position: absolute; - content: '\e834'; -} -#edit-zone .contenttype-folder:after { - content: '\e801'; -} -#edit-zone .contenttype-document:after { - content: '\e80e'; -} -#edit-zone .contenttype-file:after { +.contenttype-file::before { content: '\e811'; } -#edit-zone .contenttype-link:after { +.contenttype-link::before { content: '\e806'; } -#edit-zone .contenttype-image:after { +.contenttype-image::before { content: '\e810'; } -#edit-zone .contenttype-collection:after { +.contenttype-collection::before { content: '\e808'; } -#edit-zone .contenttype-event:after { +.contenttype-event::before { content: '\e809'; } -#edit-zone .contenttype-news-item:after { +.contenttype-news-item::before { content: '\e80f'; } -.contenttype-file #crud-edit-File-widgets-view_title:before { +.outer-wrapper .contenttype-file::before { + content: none; +} +.contenttype-file #crud-edit-File-widgets-view_title::before { content: '\e811'; - font-family: "Fontello"; - font-size: 100%; - padding: 0; - margin: 0; - position: relative; - left: inherit; - display: inline-block; - color: inherit; - width: 20px; - height: 20px; - text-align: center; - margin-right: 6px; } .mime-icon { margin-right: 8px; @@ -3949,12 +3895,12 @@ ul.picker__list { #portal-header { margin: 15px auto 20px; } -#portal-header:before, -#portal-header:after { +#portal-header::before, +#portal-header::after { content: " "; display: table; } -#portal-header:after { +#portal-header::after { clear: both; } #portal-logo { @@ -4065,20 +4011,20 @@ ul.picker__list { margin-bottom: 20px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.17); } -.plone-navbar:before, -.plone-navbar:after { +.plone-navbar::before, +.plone-navbar::after { content: " "; display: table; } -.plone-navbar:after { +.plone-navbar::after { clear: both; } -.plone-navbar-header:before, -.plone-navbar-header:after { +.plone-navbar-header::before, +.plone-navbar-header::after { content: " "; display: table; } -.plone-navbar-header:after { +.plone-navbar-header::after { clear: both; } @media (min-width: 768px) { @@ -4157,12 +4103,12 @@ ul.picker__list { background-color: #46739c; border-color: #365979; } -.plone-navbar-toggle .icon-bar:after { +.plone-navbar-toggle .icon-bar::after { content: "Menu"; position: relative; color: white; } -.plone-navbar-toggle .icon-bar + .icon-bar:after { +.plone-navbar-toggle .icon-bar + .icon-bar::after { content: ""; } @media (min-width: 768px) { @@ -4366,8 +4312,8 @@ a.plone-toolbar-logo { #portal-footer-wrapper .portlet#portal-colophon .portletContent a { padding: 10px 30px; } -#portal-footer-wrapper .portlet .portletItem:before, -#portal-footer-wrapper .portlet .portletItem a:before { +#portal-footer-wrapper .portlet .portletItem::before, +#portal-footer-wrapper .portlet .portletItem a::before { content: ""; } #portal-footer-wrapper .portlet .portletItem a { @@ -4514,8 +4460,8 @@ body.template-login_form #content-core .portletContent > ul li:hover, body.template-logged_out #content-core .portletContent > ul li:hover { background: #fcfcfd; } -body.template-login_form #content-core .portletContent > ul li:hover a:before, -body.template-logged_out #content-core .portletContent > ul li:hover a:before { +body.template-login_form #content-core .portletContent > ul li:hover a::before, +body.template-logged_out #content-core .portletContent > ul li:hover a::before { color: #64bee8; } body.template-login_form #content-core.portletCalendar table, @@ -4560,8 +4506,8 @@ body.template-logged_out #content-core.portletCalendar table .cal_has_events a:h text-decoration: none; box-shadow: 0 0 0 5px #dbecfe; } -body.template-login_form #content-core.portletCalendar table .cal_has_events a:after, -body.template-logged_out #content-core.portletCalendar table .cal_has_events a:after { +body.template-login_form #content-core.portletCalendar table .cal_has_events a::after, +body.template-logged_out #content-core.portletCalendar table .cal_has_events a::after { content: "•"; position: absolute; margin-left: 50%; @@ -4570,8 +4516,8 @@ body.template-logged_out #content-core.portletCalendar table .cal_has_events a:a color: #a7daf2; margin-top: 9px; } -body.template-login_form #content-core.portletCalendar table .cal_has_events a:hover:after, -body.template-logged_out #content-core.portletCalendar table .cal_has_events a:hover:after { +body.template-login_form #content-core.portletCalendar table .cal_has_events a:hover::after, +body.template-logged_out #content-core.portletCalendar table .cal_has_events a:hover::after { color: #64bee8; } body.template-login_form #content-core.portletCalendar table .cal_next_month, @@ -4586,10 +4532,10 @@ body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a { color: #a7daf2; } -body.template-login_form #content-core.portletCalendar table .cal_next_month.cal_has_events > a:after, -body.template-logged_out #content-core.portletCalendar table .cal_next_month.cal_has_events > a:after, -body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:after, -body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:after { +body.template-login_form #content-core.portletCalendar table .cal_next_month.cal_has_events > a::after, +body.template-logged_out #content-core.portletCalendar table .cal_next_month.cal_has_events > a::after, +body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal_has_events > a::after, +body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a::after { color: #d3edf8; } body.template-login_form #content-core.portletCalendar table .cal_next_month.cal_has_events > a:hover, @@ -4598,10 +4544,10 @@ body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:hover { color: #004665; } -body.template-login_form #content-core.portletCalendar table .cal_next_month.cal_has_events > a:hover:after, -body.template-logged_out #content-core.portletCalendar table .cal_next_month.cal_has_events > a:hover:after, -body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:hover:after, -body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:hover:after { +body.template-login_form #content-core.portletCalendar table .cal_next_month.cal_has_events > a:hover::after, +body.template-logged_out #content-core.portletCalendar table .cal_next_month.cal_has_events > a:hover::after, +body.template-login_form #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:hover::after, +body.template-logged_out #content-core.portletCalendar table .cal_prev_month.cal_has_events > a:hover::after { color: #64bee8; } body.template-login_form #content-core.portletCalendar table .today > *, @@ -4660,7 +4606,7 @@ body.template-logged_out #content-core .portletFooter { #portal-sitemap ul li { position: relative; } -#portal-sitemap ul li:before { +#portal-sitemap ul li::before { content: "•"; display: inline; font-size: 25px; @@ -4736,9 +4682,9 @@ body.template-logged_out #content-core .portletFooter { border-top-left-radius: 0; padding-left: 6px; } -.autotabs .autotoc-nav .events-month-prev:before, -.autotabs .autotoc-nav .events-week-prev:before, -.autotabs .autotoc-nav .events-day-prev:before { +.autotabs .autotoc-nav .events-month-prev::before, +.autotabs .autotoc-nav .events-week-prev::before, +.autotabs .autotoc-nav .events-day-prev::before { content: ""; position: absolute; padding: 0 5px; @@ -4750,9 +4696,9 @@ body.template-logged_out #content-core .portletFooter { top: -1px; padding: 0 !important; } -.autotabs .autotoc-nav .events-month-prev:after, -.autotabs .autotoc-nav .events-week-prev:after, -.autotabs .autotoc-nav .events-day-prev:after { +.autotabs .autotoc-nav .events-month-prev::after, +.autotabs .autotoc-nav .events-week-prev::after, +.autotabs .autotoc-nav .events-day-prev::after { content: ""; position: absolute; padding: 0 5px; @@ -4764,9 +4710,9 @@ body.template-logged_out #content-core .portletFooter { top: -1px; padding: 0 !important; } -.autotabs .autotoc-nav .events-month-prev:hover:after, -.autotabs .autotoc-nav .events-week-prev:hover:after, -.autotabs .autotoc-nav .events-day-prev:hover:after { +.autotabs .autotoc-nav .events-month-prev:hover::after, +.autotabs .autotoc-nav .events-week-prev:hover::after, +.autotabs .autotoc-nav .events-day-prev:hover::after { color: #fff; } .autotabs .autotoc-nav .events-month-next, @@ -4776,9 +4722,9 @@ body.template-logged_out #content-core .portletFooter { border-top-right-radius: 0; padding-right: 6px; } -.autotabs .autotoc-nav .events-month-next:before, -.autotabs .autotoc-nav .events-week-next:before, -.autotabs .autotoc-nav .events-day-next:before { +.autotabs .autotoc-nav .events-month-next::before, +.autotabs .autotoc-nav .events-week-next::before, +.autotabs .autotoc-nav .events-day-next::before { content: ""; position: absolute; padding: 0 5px; @@ -4790,9 +4736,9 @@ body.template-logged_out #content-core .portletFooter { top: -1px; padding: 0 !important; } -.autotabs .autotoc-nav .events-month-next:after, -.autotabs .autotoc-nav .events-week-next:after, -.autotabs .autotoc-nav .events-day-next:after { +.autotabs .autotoc-nav .events-month-next::after, +.autotabs .autotoc-nav .events-week-next::after, +.autotabs .autotoc-nav .events-day-next::after { content: ""; position: absolute; padding: 0 5px; @@ -4804,9 +4750,9 @@ body.template-logged_out #content-core .portletFooter { top: -1px; padding: 0 !important; } -.autotabs .autotoc-nav .events-month-next:hover:after, -.autotabs .autotoc-nav .events-week-next:hover:after, -.autotabs .autotoc-nav .events-day-next:hover:after { +.autotabs .autotoc-nav .events-month-next:hover::after, +.autotabs .autotoc-nav .events-week-next:hover::after, +.autotabs .autotoc-nav .events-day-next:hover::after { color: #fff; } .image-product { @@ -4855,12 +4801,12 @@ body.template-logged_out #content-core .portletFooter { font-size: 12px; background: #fcfcfd; } -#commenting:before, -#commenting:after { +#commenting::before, +#commenting::after { content: " "; display: table; } -#commenting:after { +#commenting::after { clear: both; } #commenting legend, @@ -4868,12 +4814,12 @@ body.template-logged_out #content-core .portletFooter { padding: 0.5em 0.5em 0.5em 0; font-weight: normal; } -.discussion:before, -.discussion:after { +.discussion::before, +.discussion::after { content: " "; display: table; } -.discussion:after { +.discussion::after { clear: both; } .discussion .comment { diff --git a/plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map b/plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map index ccea3ef7..77969df3 100644 --- a/plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map +++ b/plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map @@ -1 +1 @@ -{"version":3,"sources":["plonetheme/barceloneta/theme/less/mixin.font.plone.less","plonetheme/barceloneta/theme/less/fonts.plone.less","plonetheme/barceloneta/theme/less/normalize.plone.less","plonetheme/barceloneta/theme/less/print.plone.less","plonetheme/barceloneta/theme/less/scaffolding.plone.less","plonetheme/barceloneta/theme/less/mixin.prefixes.plone.less","plonetheme/barceloneta/theme/less/variables.plone.less","plonetheme/barceloneta/theme/less/mixin.tabfocus.plone.less","plonetheme/barceloneta/theme/less/type.plone.less","plonetheme/barceloneta/theme/less/code.plone.less","plonetheme/barceloneta/theme/less/grid.plone.less","plonetheme/barceloneta/theme/less/mixin.grid.plone.less","plonetheme/barceloneta/theme/less/mixin.clearfix.plone.less","plonetheme/barceloneta/theme/less/mixin.gridframework.plone.less","plonetheme/barceloneta/theme/less/tables.plone.less","plonetheme/barceloneta/theme/less/forms.plone.less","plonetheme/barceloneta/theme/less/mixin.forms.plone.less","plonetheme/barceloneta/theme/less/buttons.plone.less","plonetheme/barceloneta/theme/less/mixin.buttons.plone.less","plonetheme/barceloneta/theme/less/mixin.borderradius.plone.less","plonetheme/barceloneta/theme/less/states.plone.less","plonetheme/barceloneta/theme/less/breadcrumbs.plone.less","plonetheme/barceloneta/theme/less/pagination.plone.less","plonetheme/barceloneta/theme/less/formtabbing.plone.less","plonetheme/barceloneta/theme/less/views.plone.less","plonetheme/barceloneta/theme/less/thumbs.plone.less","plonetheme/barceloneta/theme/less/alerts.plone.less","plonetheme/barceloneta/theme/less/portlets.plone.less","plonetheme/barceloneta/theme/less/controlpanels.plone.less","plonetheme/barceloneta/theme/less/tags.plone.less","plonetheme/barceloneta/theme/less/contents.plone.less","plonetheme/barceloneta/theme/less/accessibility.plone.less","plonetheme/barceloneta/theme/less/toc.plone.less","plonetheme/barceloneta/theme/less/dropzone.plone.less","plonetheme/barceloneta/theme/less/modal.plone.less","plonetheme/barceloneta/theme/less/main.plone.less","plonetheme/barceloneta/theme/less/pickadate.plone.less","plonetheme/barceloneta/theme/less/sortable.plone.less","plonetheme/barceloneta/theme/less/tablesorter.plone.less","plonetheme/barceloneta/theme/less/tooltip.plone.less","plonetheme/barceloneta/theme/less/tree.plone.less","plonetheme/barceloneta/theme/less/dropdowns.plone.less","plonetheme/barceloneta/theme/less/header.plone.less","plonetheme/barceloneta/theme/less/sitenav.plone.less","plonetheme/barceloneta/theme/less/footer.plone.less","plonetheme/barceloneta/theme/less/loginform.plone.less","plonetheme/barceloneta/theme/less/sitemap.plone.less","plonetheme/barceloneta/theme/less/event.plone.less","plonetheme/barceloneta/theme/less/image.plone.less","plonetheme/barceloneta/theme/less/behaviors.plone.less","plonetheme/barceloneta/theme/less/discussion.plone.less","plonetheme/barceloneta/theme/less/search.plone.less"],"names":[],"mappings":"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","sourcesContent":["//*// MIXIN FONT FACE //*//\n\n.font-face(@font-path; @file-name; @font-family; @font-weight; @font-style; @svg-id; @local, ~'';) {\n @font-face {\n font-family: @font-family;\n src: url('@{font-path}@{file-name}.eot');\n src: @local\n url('@{font-path}@{file-name}.eot?#iefix') format('embedded-opentype'),\n url('@{font-path}@{file-name}.woff') format('woff'),\n url('@{font-path}@{file-name}.ttf') format('truetype'),\n url('@{font-path}@{file-name}.svg#@{svg-id}') format('svg');\n font-weight: @font-weight;\n font-style: @font-style;\n }\n}\n","//*// FONTS //*//\n\n// 300 Light\n.font-face(\n @font-path: 'roboto/';\n\t@file-name: 'roboto-light';\n\t@font-family: 'Roboto';\n\t@font-weight: 300;\n\t@font-style: normal;\n\t@svg-id: 'robotolight';\n @local: ~\"local('Roboto Light'),\";\n);\n\n// 300 Light Italic\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-lightitalic';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t300;\n\t@font-style:\titalic;\n\t@svg-id:\t\t'robotolight_italic';\n @local: ~\"local('Roboto Light Italic'),\";\n);\n\n// 400 Regular\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-regular';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t400;\n\t@font-style:\tnormal;\n\t@svg-id:\t\t'robotoregular';\n @local: ~\"local('Roboto Regular'),\";\n);\n\n// 400 Italic\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-italic';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t400;\n\t@font-style:\titalic;\n\t@svg-id:\t\t'robotoitalic';\n @local: ~\"local('Roboto Italic'),\";\n);\n\n// 500 Medium\n.font-face(\n @font-path: 'roboto/';\n @file-name:\t\t'roboto-medium';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t500;\n\t@font-style:\tnormal;\n\t@svg-id:\t\t'robotomedium';\n @local: ~\"local('Roboto Medium'),\";\n);\n\n// 500 Medium Italic\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-mediumitalic';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t500;\n\t@font-style:\titalic;\n\t@svg-id:\t\t'robotomedium_italic';\n @local: ~\"local('Roboto Medium Italic'),\";\n);\n\n// 700 Bold\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-bold';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t700;\n\t@font-style:\tnormal;\n\t@svg-id:\t\t'robotobold';\n @local: ~\"local('Roboto Bold'),\";\n);\n\n// 700 Bold Italic\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'roboto-bolditalic';\n\t@font-family:\t'Roboto';\n\t@font-weight:\t700;\n\t@font-style:\titalic;\n\t@svg-id:\t\t'robotobold_italic';\n @local: ~\"local('Roboto Bold Italic'),\";\n);\n\n// 300 Light Condensed (toolbar)\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'robotocondensed-light';\n\t@font-family:\t'Roboto Condensed';\n\t@font-weight:\t300;\n\t@font-style:\tnormal;\n\t@svg-id:\t\t'roboto_condensedlight';\n @local: ~\"local('Roboto Condensed Light'),\";\n);\n\n// 300 Light Condensed Italic (toolbar)\n.font-face(\n @font-path: 'roboto/';\n\t@file-name:\t\t'robotocondensed-lightitalic';\n\t@font-family:\t'Roboto Condensed';\n\t@font-weight:\t300;\n\t@font-style:\titalic;\n\t@svg-id:\t\t'roboto_condensedlight_italic';\n @local: ~\"local('Roboto Condensed Thin Italic'),\";\n);\n","/*! normalize.css v3.0.1 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}","//\n// Basic print styles\n// --------------------------------------------------\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css\n\n@media print {\n\n * {\n text-shadow: none !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links for images, or javascript/internal links\n a[href^=\"javascript:\"]:after,\n a[href^=\"#\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .table {\n td,\n th {\n background-color: #fff !important;\n }\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n #portal-searchbox {\n display: None;\n }\n\n #portal-personaltools {\n display: None;\n }\n\n #portal-breadcrumbs {\n display: None;\n }\n}","//*// SCAFFOLDING //*//\n\n//*// Reset the box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n//*// Body reset\nhtml {\n font-size: 62.5%;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @plone-font-family-base;\n font-size: @plone-font-size-base;\n font-weight: @plone-font-weight-medium;\n line-height: @plone-line-height-base;\n color: @plone-text-color;\n background-color: @plone-body-bg;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n//*// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n//*// Links\n\na {\n color: @plone-link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @plone-link-hover-color;\n text-decoration: underline;\n }\n\n &:focus {\n .tab-focus(); //--> NOT DONE\n }\n}\n\n\n//*// Figures\nfigure {\n margin: 0;\n}\n\n\n//*// Images\n\nimg {\n vertical-align: middle;\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @plone-line-height-computed;\n margin-bottom: @plone-line-height-computed;\n border: 0;\n border-top: 1px solid @plone-hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only, .hiddenStructure,\n.crud-form .header-select{\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n color: #fff;\n background-color: #000;\n}\n.sr-only a, .hiddenStructure a {\n color: #fff;\n background-color: #000;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}","//*// MIXIN PREFIXES //*//\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}","//* // VARIABLES //*//\n\n//*// COLORS\n//grays\n@plone-gray-darker:\t\t\t\t\t\t\tlighten(#000, 20%); // #333\n@plone-gray-dark:\t\t\t\t\t\t\tlighten(#000, 30%); // #4c4c4c\n@plone-gray:\t\t\t\t\t\t\t\tlighten(#000, 41%); // #696969\n@plone-gray-light:\t\t\t\t\t\t\tlighten(#000, 46.5%); // #767676 //discreet\n@plone-gray-lighter:\t\t\t\t\t\tlighten(#000, 80%); // #ccc //disableds like\n\n//colors\n@plone-link-color:\t\t\t\t\t\t\t#007bb1; //plone blue made slightly darker for wcag 2.0\n@plone-link-color-on-dark:\t\t\t\t\t#16a1e3; //plone blue\n\t\t\t\t\t\t\t\t\t\t\t//if you need different contrast\n@plone-link-color-on-grey:\t\t \t\t\t#086ca3; //valid wcag 2.0\n@plone-default-published-color:\t\t\t\t@plone-link-color; //published and external same color\n@plone-default-draft-color:\t\t\t\t\tdarken(@plone-toolbar-draft-color, 15%); // lime-yellow //draft is visible\n@plone-default-pending-color:\t\t\t\tdarken(@plone-toolbar-pending-color, 15%); // orange\n@plone-default-private-color:\t\t\t\t@plone-toolbar-private-color; // red\n@plone-default-internal-color:\t\t\t\tdarken(@plone-toolbar-internal-color, 15%); // is draft\n@plone-default-internally-published-color:\tdarken(@plone-toolbar-internally-published-color, 5%); // is intranet\n\n\n\n//*// SCAFFOLDING\n@plone-body-bg: \t\t\t\t #fafafa; //almost-white\n@plone-footer-bg: \t\t\t\t #2e3133; //blued-darkgray\n@plone-text-color: \t\t\t\t @plone-gray-dark;\n@plone-link-hover-color: \t\t\t\t darken(@plone-link-color, 15%);\n\n\n\n//*// TYPOGRAPHY\n@plone-font-family-sans-serif: \"Roboto\", \"Helvetica Neue\", Helvetica, Arial, sans-serif; // Roboto seems Plone's DIN\n@plone-font-family-condensed: \"Roboto Condensed\", \"Arial Narrow\", sans-serif; //just on toolbar\n@plone-font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n@plone-font-family-monospace: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n@plone-font-family-base: @plone-font-family-sans-serif;\n\n@plone-font-size-base: 14px;\n@plone-font-size-large: ceil((@plone-font-size-base * 1.25)); // ~18px\n@plone-font-size-small: ceil((@plone-font-size-base * 0.85)); // ~12px\n\n@plone-font-size-h1: floor((@plone-font-size-base * 2.6)); // ~36px\n@plone-font-size-h2: floor((@plone-font-size-base * 2.15)); // ~30px\n@plone-font-size-h3: ceil((@plone-font-size-base * 1.7)); // ~24px\n@plone-font-size-h4: ceil((@plone-font-size-base * 1.25)); // ~18px\n@plone-font-size-h5: @plone-font-size-base;\n@plone-font-size-h6: ceil((@plone-font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@plone-line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@plone-line-height-computed: floor((@plone-font-size-base * @plone-line-height-base)); // ~20px\n\n@plone-headings-font-family: inherit;\n\t@plone-headings-font-weight: @plone-font-weight-regular;\n\t@plone-headings-line-height: 1.1;\n\t@plone-headings-color: inherit;\n\n@plone-font-weight-light:\t\t300;\n@plone-font-weight-regular:\t\t400;\n@plone-font-weight-medium:\t\t500;\n@plone-font-weight-bold:\t\t700;\n\n\n\n//*// COMPONENTS\n@plone-padding-base-vertical: 6px;\n\t@plone-padding-base-horizontal: 12px;\n\t@plone-padding-large-vertical: 10px;\n\t@plone-padding-large-horizontal: 16px;\n\t@plone-padding-small-vertical: 5px;\n\t@plone-padding-small-horizontal: 10px;\n\t@plone-padding-xs-vertical: 1px;\n\t@plone-padding-xs-horizontal: 5px;\n\t@plone-line-height-large: 1.33;\n\t@plone-line-height-small: 1.5;\n@plone-border-radius-base: 4px;\n\t@plone-border-radius-large: 6px;\n\t@plone-border-radius-small: 2px;\n//** Global color for active items (e.g., navs or dropdowns).\n@plone-component-active-color: #fff;\n//** Global background color for active items (e.g., navs or dropdowns).\n@plone-component-active-bg: @plone-link-color;\n//** Width of the `border` for generating carets that indicate dropdowns.\n@plone-caret-width-base: 4px;\n//** Carets increase slightly in size for larger components.\n@plone-caret-width-large: 5px;\n\n\n\n//*// TABLES\n@plone-table-cell-padding: 8px;\n@plone-table-condensed-cell-padding: 5px;\n@plone-table-bg: #fff;\n@plone-table-bg-accent: #f6f6f6;\n@plone-table-bg-hover: #f0f0f0;\n@plone-table-bg-active: @plone-table-bg-hover;\n@plone-table-border-color: #e5e5e5;\n\n\n\n//*// STATES\n@plone-state-info-text: \t\t rgba(0,0,0,.5);\n\t@plone-state-info-bg: \t\t #aad6ea;\n\t@plone-state-info-border: \t\t 1px solid darken(@plone-state-info-bg,4%);\n\t@plone-state-info-bullet:\t\t\t\t\t#3e7b91;\n@plone-state-warning-text: \t rgba(0,0,0,.5);\n\t@plone-state-warning-bg: \t \t #ebd380;\n\t@plone-state-warning-border: \t 1px solid darken(@plone-state-warning-bg,6%);\n\t@plone-state-warning-bullet:\t\t\t\t#bc8d0d;\n@plone-state-error-text: \t\trgba(0,0,0,.5);\n\t@plone-state-error-bg: \t\t#EC9C8D;\n\t@plone-state-error-border: \t\t1px solid darken(@plone-state-error-bg,2%);\n\t@plone-state-error-bullet:\t\t\t\t\t#ac493f;\n\n\n//*// TOOLBAR\n\n@plone-left-toolbar-expanded: 120px;\n@plone-left-toolbar: 60px;\n\n//*// DEVICES\n@plone-screen-xs-min: 480px;\n@plone-screen-sm-min: 768px;\n@plone-screen-md-min: 992px;\n@plone-screen-lg-min: 1200px;\n\n@plone-container-sm: \t\t\t 750px;\n@plone-container-md: 970px;\n@plone-container-lg: 1170px;\n\n@plone-screen-xs-max: (@plone-screen-sm-min - 1);\n@plone-screen-sm-max: (@plone-screen-md-min - 1);\n@plone-screen-md-max: (@plone-screen-lg-min - 1);\n\n@plone-grid-columns:\t\t\t\t12;\n@plone-grid-gutter-width: 30px;\n@plone-grid-float-breakpoint: @plone-screen-sm-min;\n//** Point at which the navbar begins collapsing.\n@plone-grid-float-breakpoint-max: (@plone-grid-float-breakpoint - 1);\n\n\n//*// CONTAINERS\n@plone-container-tablet: ((720px + @plone-grid-gutter-width));\n@plone-container-sm: @plone-container-tablet;\n\n@plone-container-desktop: ((940px + @plone-grid-gutter-width));\n@plone-container-md: @plone-container-desktop;\n\n@plone-container-large-desktop: ((1140px + @plone-grid-gutter-width));\n@plone-container-lg: @plone-container-large-desktop;\n\n\n//*// Buttons\n@plone-btn-standalone-color: \t\t@plone-gray-dark;\n\t@plone-btn-standalone-bg: \t \t#e5e5e5;\n\t@plone-btn-standalone-border: \t \tdarken(@plone-btn-standalone-bg, 20%);\n@plone-btn-context-color: \t\t#fff;\n\t@plone-btn-context-bg: \t\t#007bb1;\n\t@plone-btn-context-border: \t\tdarken(@plone-btn-context-bg, 10%);\n@plone-btn-destructive-color: #fff;\n\t@plone-btn-destructive-bg: #bb4f45;\n\t@plone-btn-destructive-border: darken(@plone-btn-destructive-bg, 10%);\n\n//*// FORMS\n//** `` background color\n@plone-input-bg: #fff;\n//** `` background color\n@plone-input-bg-disabled: @plone-table-border-color;\n//** Text color for ``s\n@plone-input-color: @plone-gray;\n//** `` border color\n@plone-input-border: #ccc;\n//** `` border radius\n@plone-input-border-radius: @plone-border-radius-base;\n//** Border color for inputs on focus\n@plone-input-border-focus: @plone-portlet-list-bullet;\n//** Placeholder text color\n@plone-input-color-placeholder: @plone-gray-light;\n//** Default `.form-control` height\n@plone-input-height-base: (@plone-line-height-computed + (@plone-padding-base-vertical * 2) + 2);\n//** Large `.form-control` height\n@plone-input-height-large: (ceil(@plone-font-size-large * @plone-line-height-large) + (@plone-padding-large-vertical * 2) + 2);\n//** Small `.form-control` height\n@plone-input-height-small: (floor(@plone-font-size-small * @plone-line-height-small) + (@plone-padding-small-vertical * 2) + 2);\n@plone-legend-color: @plone-gray-dark;\n@plone-legend-border-color: #e5e5e5;\n\n//** Background color for textual input addons\n@plone-input-group-addon-bg: @plone-gray-lighter;\n//** Border color for textual input addons\n@plone-input-group-addon-border-color: @plone-input-border;\n\n\n\n//*// ALERTS\n@plone-alert-icon-size:\t\t\t\t\t\t\t20px;\n@plone-alert-padding:\t\t\t\t\t\t\t15px;\n\t@plone-alert-border-radius:\t\t\t\t\t4px;\n\t@plone-alert-link-font-weight:\t\t\t\t@plone-font-weight-regular; //it depends on your font-family\n@plone-alert-info-bg:\t\t\t\t\t\t@plone-state-info-bg;\n\t@plone-alert-info-text:\t\t\t\t\t\t@plone-state-info-text; //the text on alert is black with opacity to use the same color and match the bg.\n\t@plone-alert-info-border:\t\t\t\t\t@plone-state-info-border;\n\t@plone-alert-info-bullet:\t\t\t\t\t@plone-state-info-bullet;\n@plone-alert-warning-bg:\t\t\t\t\t@plone-state-warning-bg;\n\t@plone-alert-warning-text:\t\t\t\t\t@plone-state-warning-text;\n\t@plone-alert-warning-border:\t\t\t\t@plone-state-warning-border;\n\t@plone-alert-warning-bullet:\t\t\t\t@plone-state-warning-bullet;\n@plone-alert-error-bg:\t\t\t\t\t\t@plone-state-error-bg;\n\t@plone-alert-error-text:\t\t\t\t\t@plone-state-error-text;\n\t@plone-alert-error-border:\t\t\t\t\t@plone-state-error-border;\n\t@plone-alert-error-bullet:\t\t\t\t\t@plone-state-error-bullet;\n\n\n\n//*// PORTLETS\n@plone-border-base:\t\t\t\t\t\t\t1px solid;\n@plone-portlet-header-bg:\t\t\t\t\t#f2f1f1;\n@plone-portlet-header-color:\t\t\t\t@plone-gray;\n@plone-portlet-content-bg:\t\t\t\t\t#fff;\n@plone-portlet-footer-bg:\t\t\t\t\t#fcfcfd;\n@plone-portlet-border:\t\t\t\t\t\t@plone-border-base #e5e5e5;\n@plone-portlet-contrast-bg:\t\t\t\t\t#e5e5e5;\n@plone-portlet-event-bullet:\t\t\t\t#dbecfe;\n@plone-portlet-list-bullet:\t\t\t\t\t#64bee8;\n@plone-portlet-list-hover-bg:\t\t\t\t#fcfcfd;\n@plone-portlet-list-small-text:\t\t\t\t@plone-gray;\n\n\n\n//*// THUMBS\n//** Padding around the thumbnail image\n@plone-thumbnail-padding: 4px;\n//** Thumbnail background color\n@plone-thumbnail-bg: @plone-body-bg;\n//** Thumbnail border color\n@plone-thumbnail-border: #ddd;\n//** Thumbnail border radius\n@plone-thumbnail-border-radius: @plone-border-radius-base;\n//** Custom text color for thumbnail captions\n@plone-thumbnail-caption-color: @plone-text-color;\n//** Padding around the thumbnail caption\n@plone-thumbnail-caption-padding: 9px;\n\n\n\n//*// BREADCRUMBS\n@plone-breadcrumb-padding-vertical: 8px;\n@plone-breadcrumb-padding-horizontal: 15px;\n//** Breadcrumb background color\n@plone-breadcrumb-bg: darken(@plone-portlet-header-bg,5%);\n//** Breadcrumb text color\n@plone-breadcrumb-color: @plone-gray-lighter;\n//** Text color of current page in the breadcrumb\n@plone-breadcrumb-active-color: @plone-gray-light;\n\n\n//*// SITE NAV\n@plone-sitenav-height: 50px;\n\t@plone-sitenav-margin-bottom: @plone-line-height-computed;\n\t@plone-sitenav-border-radius: @plone-border-radius-base;\n\t@plone-sitenav-padding-horizontal: floor((@plone-grid-gutter-width / 2));\n\t@plone-sitenav-padding-vertical: ((@plone-sitenav-height - @plone-line-height-computed) / 2);\n\t@plone-sitenav-collapse-max-height: 340px;\n\t@plone-sitenav-link-padding: 10px 15px;\n\t@plone-sitenav-link-hover-bg: #7099bf;\n\t@plone-sitenav-bg: \t\t\t @plone-link-color;\n\t@plone-sitenav-hover-bg: \t\t\t @plone-link-color;\n\n//*// PAGINATION\n@plone-pagination-color: @plone-link-color;\n\t@plone-pagination-bg: @plone-portlet-content-bg;\n\t@plone-pagination-border: @plone-portlet-border;\n@plone-pagination-hover-color: @plone-link-hover-color;\n\t@plone-pagination-hover-bg: @plone-portlet-header-bg;\n\t@plone-pagination-hover-border: @plone-portlet-border;\n@plone-pagination-active-color: @plone-portlet-content-bg;\n\t@plone-pagination-active-bg: @plone-link-color;\n\t@plone-pagination-active-border: @plone-border-base @plone-link-color;\n@plone-pagination-disabled-color: @plone-gray-lighter;\n\t@plone-pagination-disabled-bg: @plone-portlet-footer-bg;\n\t@plone-pagination-disabled-border: @plone-portlet-border;\n\n\n\n//*// CODE\n@plone-code-color: #c7254e;\n\t@plone-code-bg: #f9f2f4;\n@plone-kbd-color: #fff;\n\t@plone-kbd-bg: #333;\n@plone-pre-bg: #f5f5f5;\n\t@plone-pre-color: @plone-gray-dark;\n\t@plone-pre-border-color: #ccc;\n\t@plone-pre-scrollable-max-height: 340px;\n\n\n\n//*// TYPE\n//** Text muted color\n@plone-text-discreet: @plone-gray;\n//** Abbreviations and acronyms border color\n@plone-abbr-border-color: @plone-gray-light;\n//** Headings small color\n@plone-headings-small-color: @plone-gray-light;\n//** Blockquote small color\n@plone-blockquote-small-color: @plone-gray-light;\n//** Blockquote font size\n@plone-blockquote-font-size: (@plone-font-size-base * 1.25);\n//** Blockquote border color\n@plone-blockquote-border-color: @plone-gray-lighter;\n//** Page header border color\n@plone-page-header-border-color: @plone-gray-lighter;\n\n\n\n//*// MISC\n//** Horizontal line color.\n@plone-hr-border: @plone-gray-lighter;\n//** Horizontal offset for forms and lists.\n@plone-component-offset-horizontal: 180px;\n\n\n//*// END\n","//*// MIXIN TAB FOCUS //*//\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n.placeholder(@plone-color: @plone-input-color-placeholder) {\n &::-moz-placeholder { color: @plone-color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @plone-color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @plone-color; } // Safari and Chrome\n}","//*// TYPE //*//\n\n//*// Body //*//\nbody { word-wrap: break-word; }\n\n//*// Headings\nh1, h2, h3, h4, h5, h6 {\n font-family: @plone-headings-font-family;\n font-weight: @plone-headings-font-weight;\n line-height: @plone-headings-line-height;\n color: @plone-headings-color;\n}\n\nh1, h2, h3 {\n margin-top: @plone-line-height-computed;\n margin-bottom: (@plone-line-height-computed / 2);\n a:hover, a:focus { text-decoration: none; border-bottom: 2px @plone-link-hover-color solid; }\n}\nh4, h5, h6 {\n margin-top: (@plone-line-height-computed / 2);\n margin-bottom: (@plone-line-height-computed / 2);\n}\n\nh1 { font-size: @plone-font-size-h1; }\nh2 { font-size: @plone-font-size-h2; }\nh3 { font-size: @plone-font-size-h3; }\nh4 { font-size: @plone-font-size-h4; }\nh5 { font-size: @plone-font-size-h5; }\nh6 { font-size: @plone-font-size-h6; }\n\n//*// Body text\np { margin: 0 0 (@plone-line-height-computed / 2); }\n\n.documentDescription {\n font-size: @plone-font-size-h4;\n font-weight: @plone-font-weight-bold;\n color: @plone-text-discreet;\n margin-bottom: 10px;\n}\n\n//*// Emphasis & misc\nsmall { font-size: 85%; }\ncite { font-style: normal; }\nmark { background-color: @plone-state-warning-bg; padding: .2em; }\n.discreet { color: @plone-text-discreet; font-weight: @plone-font-weight-regular;}\n.documentByLine {color: @plone-text-discreet; font-weight: @plone-font-weight-regular; margin-bottom: (@plone-line-height-computed / 2); }\n\n//*// Page header\n.documentFirstHeading {\n padding-bottom: ((@plone-line-height-computed / 2) - 1);\n margin: 0 0 (@plone-line-height-computed / 2);\n border-bottom: 1px solid @plone-page-header-border-color;\n}\n\n//*// Lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@plone-line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @plone-line-height-computed;\n}\n dt, dd { line-height: @plone-line-height-base; }\n dt { font-weight: bold;}\n dd { margin-left: 0; }\n\n//*// Misc\nabbr[title], abbr[data-original-title] /*tooltip bootstrap plugin, just in case*/ {\n cursor: help;\n border-bottom: 1px dotted @plone-abbr-border-color;\n}\n\n//*// Addresses\naddress {\n margin-bottom: @plone-line-height-computed;\n font-style: normal;\n line-height: @plone-line-height-base;\n}\n\n\n//*// Floats\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n","//*// CODE //*//\n\n//*// Inline codes\ncode,\nkbd,\npre,\nsamp {\n font-family: @plone-font-family-monospace;\n}\n\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @plone-code-color;\n background-color: @plone-code-bg;\n border-radius: @plone-border-radius-base;\n}\n\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @plone-kbd-color;\n background-color: @plone-kbd-bg;\n border-radius: @plone-border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n}\n\n//*// Block code\npre {\n display: block;\n padding: round((@plone-line-height-computed - 1) / 2);\n margin: 0 0 (@plone-line-height-computed / 2);\n font-size: (@plone-font-size-base - 1); // 14px to 13px\n line-height: @plone-line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @plone-pre-color;\n background-color: @plone-pre-bg;\n border: 1px solid @plone-pre-border-color;\n border-radius: @plone-border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags, not used in Plone as default\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}","//*// BOOTSTRAP GRID //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n// Container widths\n.container {\n .container-fixed();\n\n @media (min-width: @plone-screen-sm-min) {\n width: @plone-container-sm;\n }\n @media (min-width: @plone-screen-md-min) {\n width: @plone-container-md;\n }\n @media (min-width: @plone-screen-lg-min) {\n width: @plone-container-lg;\n }\n}\n\n\n// Fluid container\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n.row {\n .clearfix();\n .make-row();\n}\n\n\n// Columns\n.make-grid-columns();\n\n\n// Extra small grid\n.make-grid(xs);\n\n\n// Small grid\n@media (min-width: @plone-screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n@media (min-width: @plone-screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n@media (min-width: @plone-screen-lg-min) {\n .make-grid(lg);\n}\n\n\n// toolbar needs to match grid \n#edit-zone.plone-toolbar-top .plone-toolbar-container {\n .container-fixed(); \n @media (min-width: @plone-screen-sm-min) {\n width: @plone-container-sm;\n }\n @media (min-width: @plone-screen-md-min) {\n width: @plone-container-md;\n }\n @media (min-width: @plone-screen-lg-min) {\n width: @plone-container-lg;\n }\n margin-top: 0;\n margin-bottom: 0;\n height: 50px;\n}\n#edit-zone.plone-toolbar-top.compressed .plone-toolbar-container {width: auto;}","//*// BOOTSTRAP GRID MIXIN //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n\n\n\n\n// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @plone-grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @plone-grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @plone-grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @plone-grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @plone-grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-sm-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-md-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @plone-screen-md-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @plone-screen-md-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @plone-screen-md-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-lg-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}","//*// MIXIN CLEARFIX //*//\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}","//*// BOOTSTRAP GRID MIXIN FRAMEWORK //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n\n\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @plone-grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @plone-grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@plone-grid-gutter-width / 2);\n padding-right: (@plone-grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @plone-grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @plone-grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @plone-grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@plone-grid-columns, @class, width);\n .loop-grid-columns(@plone-grid-columns, @class, pull);\n .loop-grid-columns(@plone-grid-columns, @class, push);\n .loop-grid-columns(@plone-grid-columns, @class, offset);\n}\n","//*// TABLES //*//\n\n//*// Tables\ntable { max-width: 100%; background-color: @plone-table-bg; border-radius: @plone-border-radius-base; font-weight: @plone-font-weight-regular; color: @plone-gray;}\nth { text-align: left; color: @plone-gray-dark;}\n\n//*// listing table plone class\n.listing {\n width: 100%;\n margin-bottom: @plone-line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @plone-table-cell-padding;\n line-height: @plone-line-height-base;\n vertical-align: top;\n border-top: 0 solid @plone-table-border-color;\n border-collapse: collapse;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 1px solid @plone-table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @plone-table-border-color;\n }\n\n // Nesting\n .listing {\n background-color: @plone-body-bg;\n }\n}\n\n//*// invisible grid table plone class\n.invisible-grid {\n width: 100%;\n margin-bottom: @plone-line-height-computed;\n border: 0;\n background: transparent;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 0;\n }\n }\n }\n}\n\n// Zebra-striping\n.listing {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @plone-table-bg-accent;\n }\n }\n}\n\n//we need to add a class on div parent element of the table to ensure all possible options for responsive tables.\n//as default has-table uses it to scroll horizontally table\n.plone-has-table {\n @media screen and (max-width: @plone-screen-xs-max) {\n width: 100%;\n margin-bottom: (@plone-line-height-computed * 0.75);\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @plone-table-border-color;\n border-radius: @plone-border-radius-base;\n -webkit-overflow-scrolling: touch;\n position: relative;\n // scroll marker, it appears when we have active the mobile class\n &:after {content:\"⟷\"; position:fixed; color:@plone-gray-lighter; margin-top:-3px}\n // Tighten up spacing\n > .listing {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n }\n}\n\n// Most of this is pulled out of twitter bootstrap styles\n// https://raw.githubusercontent.com/twbs/bootstrap/master/less/tables.less\n\n\ntable {\n width: 100%;\n max-width: 100%;\n border: 1px solid @plone-table-border-color;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n vertical-align: top;\n border-top: 1px solid @plone-table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @plone-table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @plone-table-border-color;\n }\n\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @plone-table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n // This used to be a mismatched property value.\n // I think this is the intention but am not to sure.\n border-bottom: 1px solid @plone-table-border-color;\n }\n }\n}\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}","//*// FORMS //*//\n\n// Normalize non-controls\n// Restyle and baseline non-control form elements.\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @plone-line-height-computed;\n font-size: (@plone-font-size-base * 1.5);\n line-height: inherit;\n color: @plone-legend-color;\n border: 0;\n border-bottom: 1px solid @plone-legend-border-color;\n font-weight: @plone-font-weight-light;\n}\n\nlabel {\n display: inline-block;\n // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n // and 95% to fit labels with fieldhelp in the same line as leading checkbox.\n max-width: 95%;\n vertical-align: top;\n margin-bottom: @plone-padding-base-vertical;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n min-width: 10em;\n}\nselect[size=\"1\"] {\n height: @plone-input-height-base;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@plone-padding-base-vertical + 1);\n font-size: @plone-font-size-base;\n line-height: @plone-line-height-base;\n color: @plone-input-color;\n}\n\n/*.form-control,*/ input[type=\"text\"], input[type=\"number\"], input[type=\"email\"], input[type=\"password\"], textarea, select {\n display: block;\n width: 100%;\n height: @plone-input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @plone-padding-base-vertical @plone-padding-base-horizontal;\n font-size: @plone-font-size-base;\n line-height: @plone-line-height-base;\n color: @plone-input-color;\n background-color: @plone-input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @plone-input-border;\n border-radius: @plone-input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @plone-input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content\n }\n}\n// Reset height for `textarea`s\ntextarea {\n min-height: 9em;\n min-width: 10em;\n resize: vertical; //as default, only vertical resize\n\n &[name='form.widgets.IRichText.text'] {\n min-height: 12em;\n font-family: @plone-font-family-monospace; // when typing without richtext editor\n }\n}\n// Reset width for `select` elements\nselect {\n width: unset;\n display: inline-block;\n}\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned.\n// As a workaround, we set a pixel line-height that matches the\n// given height of the input. Since this fucks up everything else, we have to\n// appropriately reset it for Internet Explorer and the size variations.\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n line-height: @plone-input-height-base;\n // IE8+ misaligns the text within date inputs, so we reset\n line-height: @plone-line-height-base ~\"\\0\";\n}\n\n// Apply same disabled cursor tweak as for inputs\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n//*// Form field\n.field {\n margin-bottom: 15px;\n // each option in a multi-checkbox field should be on a separate line\n span.option {\n display: block;\n }\n}\n\n.field.error {\n .form-control-validation(@plone-state-error-text; @plone-state-error-text; @plone-state-error-bg);\n background: lighten(@plone-state-error-bg,20%);\n .box-shadow(0 0 0 5px lighten(@plone-state-error-bg,20%));\n > label, div.error {\n color: @plone-toolbar-private-color;\n }\n div.error {\n padding-left: 30px;\n font-weight: @plone-font-weight-regular;\n &:before {\n background-color: @plone-alert-error-bullet; content:\"×\";\n font-size:@plone-font-size-base;\n font-weight: @plone-font-weight-regular;\n margin-left: -30px;\n margin-right: 5px;\n display: inline-block;\n border-radius: 20px;\n text-align:center;\n color:rgba(255, 255, 255, 0.9);\n width:16px;\n height:16px;\n line-height: 16px; //IE fix\n text-shadow: 0 -1px rgba(0,0,0,.5);\n top: -1px;\n position: relative;\n }\n }\n input,textarea,select {\n border-color: @plone-toolbar-private-color;\n &:focus {\n .box-shadow(0 0 8px lighten(@plone-toolbar-private-color,40%) );\n }\n }\n}\n\n.formHelp {\n //display: block; if want all helps to be block. As default span.formHelp inline and div.formHelp block\n margin-top: 0;\n margin-bottom: 0;\n color: lighten(@plone-text-color, 10%);\n font-weight: @plone-font-weight-regular;\n font-style: italic;\n}\n\n.formControls {\n border-top: 1px solid @plone-gray-lighter;\n background: @plone-portlet-footer-bg;\n padding: @plone-padding-base-horizontal;\n box-shadow: inset 0 10px 10px -10px rgba(0,0,0,.05);\n}\n// don't show formControls in modal body,\n// because the actual controls get moved to the footer\n.plone-modal-body .formControls {\n border: none;\n background: transparent;\n padding: 0;\n box-shadow: none;\n}\n\n//*// Required\nlabel .required {\n &:after{\n color: @plone-toolbar-private-color;\n content:\"•\";\n font-size: 200%;\n line-height: 0;\n position: relative;\n top: 7px;\n margin-left: -4px;\n }\n}\n\n//*// Input + Submit groups (manual because we still have no standard for this)\n.searchField.portlet-search-gadget,\n#sharing-user-group-search,\n#select-rules {width: 100%; display: inline-block;}\n\n.searchField.portlet-search-gadget + .searchButton,\n#sharing-user-group-search + #sharing-search-button,\n#select-rules + input {position: relative; float:right;margin-top: -@plone-input-height-base;}\n\n\n\n//*// Highlighted search\n#search-results li {margin: @plone-padding-base-horizontal 0;\n .croppedDescription {margin-bottom: 0;}\n}\n.highlightedSearchTerm {\n background: #fea;\n box-shadow: 0 0 1px 1px #fea;\n}\n.search-date-options > div, .search-type-options > div {\ndisplay: inline-block;\nmargin-right: 12px;\n}\n.optionsToggle label {font-weight: 300; color:@plone-gray;}\n\n.ordered-selection-field{\n td {\n vertical-align: middle;\n text-align: center;\n }\n td button{\n display: block;\n margin: auto;\n }\n}\n\n.folder-factories{\n list-style:none;\n}\n\n//*// Correct input + label on plone structure widgets\n.widget input + label {\n display: inline;\n}\n","//*// MIXIN FORMS //*//\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@plone-text-color: #555; @plone-border-color: #ccc; @plone-background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @plone-text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @plone-border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@plone-border-color, 10%);\n @plone-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@plone-border-color, 20%);\n .box-shadow(@plone-shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @plone-text-color;\n border-color: @plone-border-color;\n background-color: @plone-background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @plone-text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@plone-color: @plone-input-border-focus) {\n @plone-color-rgba: rgba(red(@plone-color), green(@plone-color), blue(@plone-color), .6);\n &:focus {\n border-color: @plone-color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{plone-color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `` background color\n@plone-input-bg: #fff;\n//** `` background color\n@plone-input-bg-disabled: @plone-table-border-color;\n//** Text color for ``s\n@plone-input-color: @plone-gray;\n//** `` border color\n@plone-input-border: #ccc;\n//** `` border radius\n@plone-input-border-radius: @plone-border-radius-base;\n//** Border color for inputs on focus\n@plone-input-border-focus: @plone-portlet-list-bullet;\n//** Placeholder text color\n@plone-input-color-placeholder: @plone-gray-light;\n//** Default `.form-control` height\n@plone-input-height-base: (@plone-line-height-computed + (@plone-padding-base-vertical * 2) + 2);\n//** Large `.form-control` height\n@plone-input-height-large: (ceil(@plone-font-size-large * @plone-line-height-large) + (@plone-padding-large-vertical * 2) + 2);\n//** Small `.form-control` height\n@plone-input-height-small: (floor(@plone-font-size-small * @plone-line-height-small) + (@plone-padding-small-vertical * 2) + 2);\n@plone-legend-color: @plone-gray-dark;\n@plone-legend-border-color: #e5e5e5;\n\n//** Background color for textual input addons\n@plone-input-group-addon-bg: @plone-gray-lighter;\n//** Border color for textual input addons\n@plone-input-group-addon-border-color: @plone-input-border;\n\n\n\n//*// ALERTS\n@plone-alert-icon-size:\t\t\t\t\t\t\t20px;\n@plone-alert-padding:\t\t\t\t\t\t\t15px;\n\t@plone-alert-border-radius:\t\t\t\t\t4px;\n\t@plone-alert-link-font-weight:\t\t\t\t@plone-font-weight-regular; //it depends on your font-family\n@plone-alert-info-bg:\t\t\t\t\t\t@plone-state-info-bg;\n\t@plone-alert-info-text:\t\t\t\t\t\t@plone-state-info-text; //the text on alert is black with opacity to use the same color and match the bg.\n\t@plone-alert-info-border:\t\t\t\t\t@plone-state-info-border;\n\t@plone-alert-info-bullet:\t\t\t\t\t@plone-state-info-bullet;\n@plone-alert-warning-bg:\t\t\t\t\t@plone-state-warning-bg;\n\t@plone-alert-warning-text:\t\t\t\t\t@plone-state-warning-text;\n\t@plone-alert-warning-border:\t\t\t\t@plone-state-warning-border;\n\t@plone-alert-warning-bullet:\t\t\t\t@plone-state-warning-bullet;\n@plone-alert-error-bg:\t\t\t\t\t\t@plone-state-error-bg;\n\t@plone-alert-error-text:\t\t\t\t\t@plone-state-error-text;\n\t@plone-alert-error-border:\t\t\t\t\t@plone-state-error-border;\n\t@plone-alert-error-bullet:\t\t\t\t\t@plone-state-error-bullet;\n\n\n\n//*// PORTLETS\n@plone-border-base:\t\t\t\t\t\t\t1px solid;\n@plone-portlet-header-bg:\t\t\t\t\t#f2f1f1;\n@plone-portlet-header-color:\t\t\t\t@plone-gray;\n@plone-portlet-content-bg:\t\t\t\t\t#fff;\n@plone-portlet-footer-bg:\t\t\t\t\t#fcfcfd;\n@plone-portlet-border:\t\t\t\t\t\t@plone-border-base #e5e5e5;\n@plone-portlet-contrast-bg:\t\t\t\t\t#e5e5e5;\n@plone-portlet-event-bullet:\t\t\t\t#dbecfe;\n@plone-portlet-list-bullet:\t\t\t\t\t#64bee8;\n@plone-portlet-list-hover-bg:\t\t\t\t#fcfcfd;\n@plone-portlet-list-small-text:\t\t\t\t@plone-gray;\n\n\n\n//*// THUMBS\n//** Padding around the thumbnail image\n@plone-thumbnail-padding: 4px;\n//** Thumbnail background color\n@plone-thumbnail-bg: @plone-body-bg;\n//** Thumbnail border color\n@plone-thumbnail-border: #ddd;\n//** Thumbnail border radius\n@plone-thumbnail-border-radius: @plone-border-radius-base;\n//** Custom text color for thumbnail captions\n@plone-thumbnail-caption-color: @plone-text-color;\n//** Padding around the thumbnail caption\n@plone-thumbnail-caption-padding: 9px;\n\n\n\n//*// BREADCRUMBS\n@plone-breadcrumb-padding-vertical: 8px;\n@plone-breadcrumb-padding-horizontal: 15px;\n//** Breadcrumb background color\n@plone-breadcrumb-bg: darken(@plone-portlet-header-bg,5%);\n//** Breadcrumb text color\n@plone-breadcrumb-color: @plone-gray-lighter;\n//** Text color of current page in the breadcrumb\n@plone-breadcrumb-active-color: @plone-gray-light;\n\n\n//*// SITE NAV\n@plone-sitenav-height: 50px;\n\t@plone-sitenav-margin-bottom: @plone-line-height-computed;\n\t@plone-sitenav-border-radius: @plone-border-radius-base;\n\t@plone-sitenav-padding-horizontal: floor((@plone-grid-gutter-width / 2));\n\t@plone-sitenav-padding-vertical: ((@plone-sitenav-height - @plone-line-height-computed) / 2);\n\t@plone-sitenav-collapse-max-height: 340px;\n\t@plone-sitenav-link-padding: 10px 15px;\n\t@plone-sitenav-link-hover-bg: #7099bf;\n\t@plone-sitenav-bg: \t\t\t @plone-link-color;\n\t@plone-sitenav-hover-bg: \t\t\t @plone-link-color;\n\n//*// PAGINATION\n@plone-pagination-color: @plone-link-color;\n\t@plone-pagination-bg: @plone-portlet-content-bg;\n\t@plone-pagination-border: @plone-portlet-border;\n@plone-pagination-hover-color: @plone-link-hover-color;\n\t@plone-pagination-hover-bg: @plone-portlet-header-bg;\n\t@plone-pagination-hover-border: @plone-portlet-border;\n@plone-pagination-active-color: @plone-portlet-content-bg;\n\t@plone-pagination-active-bg: @plone-link-color;\n\t@plone-pagination-active-border: @plone-border-base @plone-link-color;\n@plone-pagination-disabled-color: @plone-gray-lighter;\n\t@plone-pagination-disabled-bg: @plone-portlet-footer-bg;\n\t@plone-pagination-disabled-border: @plone-portlet-border;\n\n\n\n//*// CODE\n@plone-code-color: #c7254e;\n\t@plone-code-bg: #f9f2f4;\n@plone-kbd-color: #fff;\n\t@plone-kbd-bg: #333;\n@plone-pre-bg: #f5f5f5;\n\t@plone-pre-color: @plone-gray-dark;\n\t@plone-pre-border-color: #ccc;\n\t@plone-pre-scrollable-max-height: 340px;\n\n\n\n//*// TYPE\n//** Text muted color\n@plone-text-discreet: @plone-gray;\n//** Abbreviations and acronyms border color\n@plone-abbr-border-color: @plone-gray-light;\n//** Headings small color\n@plone-headings-small-color: @plone-gray-light;\n//** Blockquote small color\n@plone-blockquote-small-color: @plone-gray-light;\n//** Blockquote font size\n@plone-blockquote-font-size: (@plone-font-size-base * 1.25);\n//** Blockquote border color\n@plone-blockquote-border-color: @plone-gray-lighter;\n//** Page header border color\n@plone-page-header-border-color: @plone-gray-lighter;\n\n\n\n//*// MISC\n//** Horizontal line color.\n@plone-hr-border: @plone-gray-lighter;\n//** Horizontal offset for forms and lists.\n@plone-component-offset-horizontal: 180px;\n\n\n//*// END\n","//*// MIXIN TAB FOCUS //*//\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n.placeholder(@plone-color: @plone-input-color-placeholder) {\n &::-moz-placeholder { color: @plone-color; // Firefox\n opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n &:-ms-input-placeholder { color: @plone-color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @plone-color; } // Safari and Chrome\n}","//*// TYPE //*//\n\n//*// Body //*//\nbody { word-wrap: break-word; }\n\n//*// Headings\nh1, h2, h3, h4, h5, h6 {\n font-family: @plone-headings-font-family;\n font-weight: @plone-headings-font-weight;\n line-height: @plone-headings-line-height;\n color: @plone-headings-color;\n}\n\nh1, h2, h3 {\n margin-top: @plone-line-height-computed;\n margin-bottom: (@plone-line-height-computed / 2);\n a:hover, a:focus { text-decoration: none; border-bottom: 2px @plone-link-hover-color solid; }\n}\nh4, h5, h6 {\n margin-top: (@plone-line-height-computed / 2);\n margin-bottom: (@plone-line-height-computed / 2);\n}\n\nh1 { font-size: @plone-font-size-h1; }\nh2 { font-size: @plone-font-size-h2; }\nh3 { font-size: @plone-font-size-h3; }\nh4 { font-size: @plone-font-size-h4; }\nh5 { font-size: @plone-font-size-h5; }\nh6 { font-size: @plone-font-size-h6; }\n\n//*// Body text\np { margin: 0 0 (@plone-line-height-computed / 2); }\n\n.documentDescription {\n font-size: @plone-font-size-h4;\n font-weight: @plone-font-weight-bold;\n color: @plone-text-discreet;\n margin-bottom: 10px;\n}\n\n//*// Emphasis & misc\nsmall { font-size: 85%; }\ncite { font-style: normal; }\nmark { background-color: @plone-state-warning-bg; padding: .2em; }\n.discreet { color: @plone-text-discreet; font-weight: @plone-font-weight-regular;}\n.documentByLine {color: @plone-text-discreet; font-weight: @plone-font-weight-regular; margin-bottom: (@plone-line-height-computed / 2); }\n\n//*// Page header\n.documentFirstHeading {\n padding-bottom: ((@plone-line-height-computed / 2) - 1);\n margin: 0 0 (@plone-line-height-computed / 2);\n border-bottom: 1px solid @plone-page-header-border-color;\n}\n\n//*// Lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@plone-line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @plone-line-height-computed;\n}\n dt, dd { line-height: @plone-line-height-base; }\n dt { font-weight: bold;}\n dd { margin-left: 0; }\n\n//*// Misc\nabbr[title], abbr[data-original-title] /*tooltip bootstrap plugin, just in case*/ {\n cursor: help;\n border-bottom: 1px dotted @plone-abbr-border-color;\n}\n\n//*// Addresses\naddress {\n margin-bottom: @plone-line-height-computed;\n font-style: normal;\n line-height: @plone-line-height-base;\n}\n\n\n//*// Floats\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n","//*// CODE //*//\n\n//*// Inline codes\ncode,\nkbd,\npre,\nsamp {\n font-family: @plone-font-family-monospace;\n}\n\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @plone-code-color;\n background-color: @plone-code-bg;\n border-radius: @plone-border-radius-base;\n}\n\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @plone-kbd-color;\n background-color: @plone-kbd-bg;\n border-radius: @plone-border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n}\n\n//*// Block code\npre {\n display: block;\n padding: round((@plone-line-height-computed - 1) / 2);\n margin: 0 0 (@plone-line-height-computed / 2);\n font-size: (@plone-font-size-base - 1); // 14px to 13px\n line-height: @plone-line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @plone-pre-color;\n background-color: @plone-pre-bg;\n border: 1px solid @plone-pre-border-color;\n border-radius: @plone-border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags, not used in Plone as default\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}","//*// BOOTSTRAP GRID //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n// Container widths\n.container {\n .container-fixed();\n\n @media (min-width: @plone-screen-sm-min) {\n width: @plone-container-sm;\n }\n @media (min-width: @plone-screen-md-min) {\n width: @plone-container-md;\n }\n @media (min-width: @plone-screen-lg-min) {\n width: @plone-container-lg;\n }\n}\n\n\n// Fluid container\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n.row {\n .clearfix();\n .make-row();\n}\n\n\n// Columns\n.make-grid-columns();\n\n\n// Extra small grid\n.make-grid(xs);\n\n\n// Small grid\n@media (min-width: @plone-screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n@media (min-width: @plone-screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n@media (min-width: @plone-screen-lg-min) {\n .make-grid(lg);\n}\n\n\n// toolbar needs to match grid \n#edit-zone.plone-toolbar-top .plone-toolbar-container {\n .container-fixed(); \n @media (min-width: @plone-screen-sm-min) {\n width: @plone-container-sm;\n }\n @media (min-width: @plone-screen-md-min) {\n width: @plone-container-md;\n }\n @media (min-width: @plone-screen-lg-min) {\n width: @plone-container-lg;\n }\n margin-top: 0;\n margin-bottom: 0;\n height: 50px;\n}\n#edit-zone.plone-toolbar-top.compressed .plone-toolbar-container {width: auto;}","//*// BOOTSTRAP GRID MIXIN //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n\n\n\n\n// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @plone-grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @plone-grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @plone-grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @plone-grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @plone-grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-sm-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @plone-screen-sm-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-md-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @plone-screen-md-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @plone-screen-md-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @plone-screen-md-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @plone-grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @plone-screen-lg-min) {\n float: left;\n width: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n margin-left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n left: percentage((@columns / @plone-grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @plone-screen-lg-min) {\n right: percentage((@columns / @plone-grid-columns));\n }\n}","//*// MIXIN CLEARFIX //*//\n\n.clearfix() {\n &::before,\n &::after {\n content: \" \"; // 1\n display: table; // 2\n }\n &::after {\n clear: both;\n }\n}","//*// BOOTSTRAP GRID MIXIN FRAMEWORK //*//\n\n//*// This is exactly BOOTSTRAP GRID, replace it for your system\n\n\n\n\n\n\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @plone-grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @plone-grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@plone-grid-gutter-width / 2);\n padding-right: (@plone-grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) when (@index = 1) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @plone-grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @plone-grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @plone-grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @plone-grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@plone-grid-columns, @class, width);\n .loop-grid-columns(@plone-grid-columns, @class, pull);\n .loop-grid-columns(@plone-grid-columns, @class, push);\n .loop-grid-columns(@plone-grid-columns, @class, offset);\n}\n","//*// TABLES //*//\n\n//*// Tables\ntable { max-width: 100%; background-color: @plone-table-bg; border-radius: @plone-border-radius-base; font-weight: @plone-font-weight-regular; color: @plone-gray;}\nth { text-align: left; color: @plone-gray-dark;}\n\n//*// listing table plone class\n.listing {\n width: 100%;\n margin-bottom: @plone-line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @plone-table-cell-padding;\n line-height: @plone-line-height-base;\n vertical-align: top;\n border-top: 0 solid @plone-table-border-color;\n border-collapse: collapse;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 1px solid @plone-table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @plone-table-border-color;\n }\n\n // Nesting\n .listing {\n background-color: @plone-body-bg;\n }\n}\n\n//*// invisible grid table plone class\n.invisible-grid {\n width: 100%;\n margin-bottom: @plone-line-height-computed;\n border: 0;\n background: transparent;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 0;\n }\n }\n }\n}\n\n// Zebra-striping\n.listing {\n > tbody > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @plone-table-bg-accent;\n }\n }\n}\n\n//we need to add a class on div parent element of the table to ensure all possible options for responsive tables.\n//as default has-table uses it to scroll horizontally table\n.plone-has-table {\n @media screen and (max-width: @plone-screen-xs-max) {\n width: 100%;\n margin-bottom: (@plone-line-height-computed * 0.75);\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @plone-table-border-color;\n border-radius: @plone-border-radius-base;\n -webkit-overflow-scrolling: touch;\n position: relative;\n // scroll marker, it appears when we have active the mobile class\n &::after {content:\"⟷\"; position:fixed; color:@plone-gray-lighter; margin-top:-3px}\n // Tighten up spacing\n > .listing {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n }\n}\n\n// Most of this is pulled out of twitter bootstrap styles\n// https://raw.githubusercontent.com/twbs/bootstrap/master/less/tables.less\n\n\ntable {\n width: 100%;\n max-width: 100%;\n border: 1px solid @plone-table-border-color;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n vertical-align: top;\n border-top: 1px solid @plone-table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @plone-table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @plone-table-border-color;\n }\n\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @plone-table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n // This used to be a mismatched property value.\n // I think this is the intention but am not to sure.\n border-bottom: 1px solid @plone-table-border-color;\n }\n }\n}\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}","//*// FORMS //*//\n\n// Normalize non-controls\n// Restyle and baseline non-control form elements.\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @plone-line-height-computed;\n font-size: (@plone-font-size-base * 1.5);\n line-height: inherit;\n color: @plone-legend-color;\n border: 0;\n border-bottom: 1px solid @plone-legend-border-color;\n font-weight: @plone-font-weight-light;\n}\n\nlabel {\n display: inline-block;\n // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n // and 95% to fit labels with fieldhelp in the same line as leading checkbox.\n max-width: 95%;\n vertical-align: top;\n margin-bottom: @plone-padding-base-vertical;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n min-width: 10em;\n}\nselect[size=\"1\"] {\n height: @plone-input-height-base;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@plone-padding-base-vertical + 1);\n font-size: @plone-font-size-base;\n line-height: @plone-line-height-base;\n color: @plone-input-color;\n}\n\n/*.form-control,*/ input[type=\"text\"], input[type=\"number\"], input[type=\"email\"], input[type=\"password\"], textarea, select {\n display: block;\n width: 100%;\n height: @plone-input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @plone-padding-base-vertical @plone-padding-base-horizontal;\n font-size: @plone-font-size-base;\n line-height: @plone-line-height-base;\n color: @plone-input-color;\n background-color: @plone-input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @plone-input-border;\n border-radius: @plone-input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @plone-input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content\n }\n}\n// Reset height for `textarea`s\ntextarea {\n min-height: 9em;\n min-width: 10em;\n resize: vertical; //as default, only vertical resize\n\n &[name='form.widgets.IRichText.text'] {\n min-height: 12em;\n font-family: @plone-font-family-monospace; // when typing without richtext editor\n }\n}\n// Reset width for `select` elements\nselect {\n width: unset;\n display: inline-block;\n}\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned.\n// As a workaround, we set a pixel line-height that matches the\n// given height of the input. Since this fucks up everything else, we have to\n// appropriately reset it for Internet Explorer and the size variations.\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n line-height: @plone-input-height-base;\n // IE8+ misaligns the text within date inputs, so we reset\n line-height: @plone-line-height-base ~\"\\0\";\n}\n\n// Apply same disabled cursor tweak as for inputs\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n//*// Form field\n.field {\n margin-bottom: 15px;\n // each option in a multi-checkbox field should be on a separate line\n span.option {\n display: block;\n }\n}\n\n.field.error {\n .form-control-validation(@plone-state-error-text; @plone-state-error-text; @plone-state-error-bg);\n background: lighten(@plone-state-error-bg,20%);\n .box-shadow(0 0 0 5px lighten(@plone-state-error-bg,20%));\n > label, div.error {\n color: @plone-toolbar-private-color;\n }\n div.error {\n padding-left: 30px;\n font-weight: @plone-font-weight-regular;\n &::before {\n background-color: @plone-alert-error-bullet; content:\"×\";\n font-size:@plone-font-size-base;\n font-weight: @plone-font-weight-regular;\n margin-left: -30px;\n margin-right: 5px;\n display: inline-block;\n border-radius: 20px;\n text-align:center;\n color:rgba(255, 255, 255, 0.9);\n width:16px;\n height:16px;\n line-height: 16px; //IE fix\n text-shadow: 0 -1px rgba(0,0,0,.5);\n top: -1px;\n position: relative;\n }\n }\n input,textarea,select {\n border-color: @plone-toolbar-private-color;\n &:focus {\n .box-shadow(0 0 8px lighten(@plone-toolbar-private-color,40%) );\n }\n }\n}\n\n.formHelp {\n //display: block; if want all helps to be block. As default span.formHelp inline and div.formHelp block\n margin-top: 0;\n margin-bottom: 0;\n color: lighten(@plone-text-color, 10%);\n font-weight: @plone-font-weight-regular;\n font-style: italic;\n}\n\n.formControls {\n border-top: 1px solid @plone-gray-lighter;\n background: @plone-portlet-footer-bg;\n padding: @plone-padding-base-horizontal;\n box-shadow: inset 0 10px 10px -10px rgba(0,0,0,.05);\n}\n// don't show formControls in modal body,\n// because the actual controls get moved to the footer\n.plone-modal-body .formControls {\n border: none;\n background: transparent;\n padding: 0;\n box-shadow: none;\n}\n\n//*// Required\nlabel .required {\n &::after{\n color: @plone-toolbar-private-color;\n content:\"•\";\n font-size: 200%;\n line-height: 0;\n position: relative;\n top: 7px;\n margin-left: -4px;\n }\n}\n\n//*// Input + Submit groups (manual because we still have no standard for this)\n.searchField.portlet-search-gadget,\n#sharing-user-group-search,\n#select-rules {width: 100%; display: inline-block;}\n\n.searchField.portlet-search-gadget + .searchButton,\n#sharing-user-group-search + #sharing-search-button,\n#select-rules + input {position: relative; float:right;margin-top: -@plone-input-height-base;}\n\n\n\n//*// Highlighted search\n#search-results li {margin: @plone-padding-base-horizontal 0;\n .croppedDescription {margin-bottom: 0;}\n}\n.highlightedSearchTerm {\n background: #fea;\n box-shadow: 0 0 1px 1px #fea;\n}\n.search-date-options > div, .search-type-options > div {\ndisplay: inline-block;\nmargin-right: 12px;\n}\n.optionsToggle label {font-weight: 300; color:@plone-gray;}\n\n.ordered-selection-field{\n td {\n vertical-align: middle;\n text-align: center;\n }\n td button{\n display: block;\n margin: auto;\n }\n}\n\n.folder-factories{\n list-style:none;\n}\n\n//*// Correct input + label on plone structure widgets\n.widget input + label {\n display: inline;\n}\n","//*// MIXIN FORMS //*//\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@plone-text-color: #555; @plone-border-color: #ccc; @plone-background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n color: @plone-text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @plone-border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@plone-border-color, 10%);\n @plone-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@plone-border-color, 20%);\n .box-shadow(@plone-shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @plone-text-color;\n border-color: @plone-border-color;\n background-color: @plone-background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @plone-text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@plone-color: @plone-input-border-focus) {\n @plone-color-rgba: rgba(red(@plone-color), green(@plone-color), blue(@plone-color), .6);\n &:focus {\n border-color: @plone-color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{plone-color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `