blob: 913ec9d664dc33cf8a641680993414523737ff76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/**
* @file
* Views Styling
*/
@import "base";
/*
* Views' admin tabs
*
* The views admin tabs use the same classes as the secondary tabs. We prevent
* some of our tab styling from bleeding into (and breaking) the Views admin
* pages. If your sub-theme isn't used for admin pages, you can remove this
* entire section.
*/
.views-displays .secondary {
li {
float: none;
margin: 0 6px 0;
}
a:link,
a:visited {
@include single-text-shadow(none);
padding: 2px 7px 3px;
}
.open > a {
@include border-radius(7px 7px 0 0);
&:hover {
color: #333;
}
}
.action-list li {
margin: 0;
&:first-child {
@include border-radius(0 7px 0 0);
}
&:last-child {
@include border-radius(0 0 7px 7px);
}
}
}
|