root / htmltest / sites / all / modules / views / css / views-admin.contextual.css @ a5572547
1 |
/**
|
---|---|
2 |
* The .contextual.css file is intended to contain styles that override declarations
|
3 |
* in the Contextual module.
|
4 |
*/
|
5 |
|
6 |
/* @group Wrapper */
|
7 |
|
8 |
#views-live-preview .contextual-links-region-active { |
9 |
outline: medium none; |
10 |
} |
11 |
|
12 |
#views-live-preview div.contextual-links-wrapper { |
13 |
right: auto; |
14 |
top: auto; |
15 |
} |
16 |
|
17 |
html.js #views-live-preview div.contextual-links-wrapper { |
18 |
display: inline; |
19 |
} |
20 |
|
21 |
/* @end */
|
22 |
|
23 |
/* @group Trigger */
|
24 |
|
25 |
#views-live-preview a.contextual-links-trigger { |
26 |
display: block; |
27 |
} |
28 |
|
29 |
/* @end */
|
30 |
|
31 |
/* @group List */
|
32 |
|
33 |
div.contextual-links-wrapper ul.contextual-links { |
34 |
-moz-border-radius: 0 4px 4px 4px; |
35 |
-webkit-border-radius: 0 4px 4px 4px; |
36 |
border-radius: 0 4px 4px 4px; |
37 |
min-width: 10em; |
38 |
padding: 6px 6px 9px 6px; |
39 |
right: auto; |
40 |
} |
41 |
|
42 |
ul.contextual-links li a, |
43 |
ul.contextual-links li span { |
44 |
padding-bottom: 0.25em; |
45 |
padding-right: 0.1667em; |
46 |
padding-top: 0.25em; |
47 |
} |
48 |
|
49 |
ul.contextual-links li span { |
50 |
font-weight: bold; |
51 |
} |
52 |
|
53 |
ul.contextual-links li a { |
54 |
color: #666666 !important; |
55 |
margin: 0.25em 0; |
56 |
padding-left: 1em; |
57 |
} |
58 |
|
59 |
ul.contextual-links li a:hover { |
60 |
background-color: #badbec; |
61 |
} |
62 |
|
63 |
/* @end */
|