Mercurial > hg > cmmr2012-drupal-site
annotate themes/contrib/mayo/sass/partials/_style-settings.scss @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | 5311817fb629 |
children |
rev | line source |
---|---|
Chris@2 | 1 // ==================================================================== |
Chris@2 | 2 // Rounded nodes or sidebars |
Chris@2 | 3 // rc-x classes relate to admin setting for rounded corners. |
Chris@2 | 4 // .rc-1 Sidebar block only |
Chris@2 | 5 // .rc-2 Node only |
Chris@2 | 6 // .rc-3 Both sidebar block and node |
Chris@2 | 7 // ==================================================================== |
Chris@2 | 8 .rc-2 .comment, |
Chris@2 | 9 .rc-2 .node, |
Chris@2 | 10 .rc-1 .column-block, |
Chris@2 | 11 .rc-1 .sidebar .block, |
Chris@2 | 12 .rc-3 .comment, |
Chris@2 | 13 .rc-3 .node, |
Chris@2 | 14 .rc-3 .column-block, |
Chris@2 | 15 .rc-3 .sidebar .block { |
Chris@2 | 16 @include border-radius (8px); |
Chris@2 | 17 } |
Chris@2 | 18 |
Chris@2 | 19 // ==================================================================== |
Chris@2 | 20 // Dark color set for message and errors. |
Chris@2 | 21 // ==================================================================== |
Chris@2 | 22 .dark-messages { |
Chris@2 | 23 div.messages--status { |
Chris@2 | 24 background-color: #224422; |
Chris@2 | 25 border: solid 1px #669966; |
Chris@2 | 26 color: #aaccaa; |
Chris@2 | 27 } |
Chris@2 | 28 div.messages--warning { |
Chris@2 | 29 background-color: #666633; |
Chris@2 | 30 border: solid 1px #aaaa44; |
Chris@2 | 31 color: #ccccaa; |
Chris@2 | 32 } |
Chris@2 | 33 div.messages--error { |
Chris@2 | 34 background-color: #663333; |
Chris@2 | 35 border: solid 1px #bb6666; |
Chris@2 | 36 color: #ccaaaa; |
Chris@2 | 37 } |
Chris@2 | 38 } |