Projet

Général

Profil

Paste
Télécharger (1007 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / mayo / sass / partials / _style-settings.scss @ d7f58da2

1
// ====================================================================
2
// Rounded nodes or sidebars
3
// rc-x classes relate to admin setting for rounded corners.
4
// .rc-1 Sidebar block only
5
// .rc-2 Node only
6
// .rc-3 Both sidebar block and node
7
// ====================================================================
8
.rc-1 .comment,
9
.rc-1 .node,
10
.rc-2 .column-block,
11
.rc-2 .sidebar .block,
12
.rc-3 .comment,
13
.rc-3 .node,
14
.rc-3 .column-block,
15
.rc-3 .sidebar .block {
16
  @include border-radius (8px);
17
}
18

    
19
// ====================================================================
20
// Dark color set for message and errors.
21
// ====================================================================
22
.dark-messages {
23
  div.status {
24
    background-color: #224422;
25
    border: solid 1px #669966;
26
    color: #aaccaa;
27
  }
28
  div.warning {
29
    background-color: #666633;
30
    border: solid 1px #aaaa44;
31
    color: #ccccaa;
32
  }
33
  div.error {
34
    background-color: #663333;
35
    border: solid 1px #bb6666;
36
    color: #ccaaaa;
37
  }
38
}