Projet

Général

Profil

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

root / drupal7 / sites / all / modules / rules / ui / rules.ui.seven.css @ 76e2e7c3

1
/**
2
 * JQuery UI style sheet fix for the seven theme.
3
 */
4

    
5
.ui-button {
6
  border: 1px solid #cccccc;
7
  background: #e6e6e6;
8
}
9

    
10
.ui-state-hover,
11
.ui-state-focus {
12
  border: 1px solid #bbbbbb;
13
}
14

    
15
.ui-button.ui-state-active {
16
  border: 1px solid #777777;
17
  font-weight: bold;
18
}
19

    
20
/**
21
 * Corner radius
22
 */
23
.ui-corner-tl {
24
  -moz-border-radius-topleft: 4px;
25
  -webkit-border-top-left-radius: 4px;
26
  border-top-left-radius: 4px;
27
}
28

    
29
.ui-corner-tr {
30
  -moz-border-radius-topright: 4px;
31
  -webkit-border-top-right-radius: 4px;
32
  border-top-right-radius: 4px;
33
}
34

    
35
.ui-corner-bl {
36
  -moz-border-radius-bottomleft: 4px;
37
  -webkit-border-bottom-left-radius: 4px;
38
  border-bottom-left-radius: 4px;
39
}
40

    
41
.ui-corner-br {
42
  -moz-border-radius-bottomright: 4px;
43
  -webkit-border-bottom-right-radius: 4px;
44
  border-bottom-right-radius: 4px;
45
}
46

    
47
.ui-corner-top {
48
  -moz-border-radius-topleft: 4px;
49
  -moz-border-radius-topright: 4px;
50
  -webkit-border-top-left-radius: 4px;
51
  -webkit-border-top-right-radius: 4px;
52
  border-top-left-radius: 4px;
53
  border-top-right-radius: 4px;
54
}
55

    
56
.ui-corner-bottom {
57
  -moz-border-radius-bottomleft: 4px;
58
  -moz-border-radius-bottomright: 4px;
59
  -webkit-border-bottom-left-radius: 4px;
60
  -webkit-border-bottom-right-radius: 4px;
61
  border-bottom-left-radius: 4px;
62
  border-bottom-right-radius: 4px;
63
}
64

    
65
.ui-corner-right {
66
  -moz-border-radius-bottomright: 4px;
67
  -moz-border-radius-topright: 4px;
68
  -webkit-border-bottom-right-radius: 4px;
69
  -webkit-border-top-right-radius: 4px;
70
  border-bottom-right-radius: 4px;
71
  border-top-right-radius: 4px;
72
}
73

    
74
.ui-corner-left {
75
  -moz-border-radius-bottomleft: 4px;
76
  -moz-border-radius-topleft: 4px;
77
  -webkit-border-bottom-left-radius: 4px;
78
  -webkit-border-top-left-radius: 4px;
79
  border-bottom-left-radius: 4px;
80
  border-top-left-radius: 4px;
81
}
82

    
83
.ui-corner-all {
84
  -moz-border-radius: 4px;
85
  -webkit-border-radius: 4px;
86
  border-radius: 4px;
87
}
88

    
89
/**
90
 * Fix the position of the core-autocomplete popup when shown in the settings
91
 * fieldset.
92
 */
93
.form-item-settings-tags {
94
  position: relative;
95
}