Projet

Général

Profil

Paste
Télécharger (2,42 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / rubik / css / shortcut.css @ fc457866

1

    
2
/**
3
 * @file
4
 * Styles for the core Shortcut module elements.
5
 */
6

    
7
/*******************************************************************************
8
 * General shortcuts styling
9
 ******************************************************************************/
10
.add-or-remove-shortcuts a {
11
  float: left;
12
  display: block;
13
  margin: 0 5px 0 0;
14
  padding: 0;
15
  background: #999 url(../images/buttons.png) -800px 50% no-repeat;
16
  color: #fff;
17
  text-shadow: #666 0 1px 0;
18
  -webkit-border-radius: 5px;
19
     -moz-border-radius: 5px;
20
          border-radius: 5px;
21
}
22
.remove-shortcut a {
23
  background-position: -1600px 50%;
24
}
25
.add-or-remove-shortcuts a:active {
26
  color: #222;
27
  background-color: #666;
28
  background-position: -1200px 50%;
29
  text-shadow: #999 0 1px 0;
30
}
31
.remove-shortcut a:active {
32
  background-position: -2000px 50%;
33
}
34
.add-or-remove-shortcuts a span.icon {
35
  width: 20px;
36
  height: 20px;
37
  float: left;
38
}
39
.add-or-remove-shortcuts a span.text {
40
  float: left;
41
  display: none;
42
  padding: 0 5px;
43
}
44
.add-or-remove-shortcuts a:focus span.text,
45
.add-or-remove-shortcuts a:hover span.text {
46
  display: block;
47
}
48
/* General shortcuts styling end */
49

    
50
/*******************************************************************************
51
 * Toolbar styles
52
 * Unchanged from core shortcut.css styles.
53
 ******************************************************************************/
54
div#toolbar a#edit-shortcuts {
55
  float: right;
56
  padding: 5px 10px 5px 5px;
57
  line-height: 24px;
58
  color: #bbb;
59
}
60
div#toolbar a#edit-shortcuts:focus,
61
div#toolbar a#edit-shortcuts:hover,
62
div#toolbar a#edit-shortcuts.active {
63
  color:  #fff;
64
}
65
div#toolbar div.toolbar-shortcuts ul {
66
  padding: 5px 0 2px 0;
67
  height: 28px;
68
  line-height: 24px;
69
  float: left;
70
  margin-left: 5px;
71
}
72
div#toolbar div.toolbar-shortcuts ul li a {
73
  padding: 0 5px;
74
  margin-right: 5px;
75
  border-radius: 5px;
76
  -moz-border-radius: 5px;
77
  -webkit-border-radius: 5px;
78
}
79
div#toolbar div.toolbar-shortcuts ul li a:focus,
80
div#toolbar div.toolbar-shortcuts ul li a:hover,
81
div#toolbar div.toolbar-shortcuts ul li a.active:focus {
82
  background: #555;
83
}
84
div#toolbar div.toolbar-shortcuts ul li a.active:hover,
85
div#toolbar div.toolbar-shortcuts ul li a.active {
86
  background: #000;
87
}
88
div#toolbar div.toolbar-shortcuts span.icon {
89
  float: left;
90
  background: #444;
91
  width: 30px;
92
  height: 30px;
93
  margin-right: 5px;
94
  -webkit-border-radius: 5px;
95
     -moz-border-radius: 5px;
96
          border-radius: 5px;
97
}
98
/* Toolbar styles end */