Chris@2: // ==================================================================== Chris@2: // Rounded nodes or sidebars Chris@2: // rc-x classes relate to admin setting for rounded corners. Chris@2: // .rc-1 Sidebar block only Chris@2: // .rc-2 Node only Chris@2: // .rc-3 Both sidebar block and node Chris@2: // ==================================================================== Chris@2: .rc-2 .comment, Chris@2: .rc-2 .node, Chris@2: .rc-1 .column-block, Chris@2: .rc-1 .sidebar .block, Chris@2: .rc-3 .comment, Chris@2: .rc-3 .node, Chris@2: .rc-3 .column-block, Chris@2: .rc-3 .sidebar .block { Chris@2: @include border-radius (8px); Chris@2: } Chris@2: Chris@2: // ==================================================================== Chris@2: // Dark color set for message and errors. Chris@2: // ==================================================================== Chris@2: .dark-messages { Chris@2: div.messages--status { Chris@2: background-color: #224422; Chris@2: border: solid 1px #669966; Chris@2: color: #aaccaa; Chris@2: } Chris@2: div.messages--warning { Chris@2: background-color: #666633; Chris@2: border: solid 1px #aaaa44; Chris@2: color: #ccccaa; Chris@2: } Chris@2: div.messages--error { Chris@2: background-color: #663333; Chris@2: border: solid 1px #bb6666; Chris@2: color: #ccaaaa; Chris@2: } Chris@2: }