Project

General

Profile

Download (783 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * @file
3
 * Views Styling
4
 */
5

    
6
@import "base";
7

    
8

    
9
/*
10
 * Views' admin tabs
11
 *
12
 * The views admin tabs use the same classes as the secondary tabs. We prevent
13
 * some of our tab styling from bleeding into (and breaking) the Views admin
14
 * pages. If your sub-theme isn't used for admin pages, you can remove this
15
 * entire section.
16
 */
17
.views-displays .secondary {
18
  li {
19
    float: none;
20
    margin: 0 6px 0;
21
  }
22

    
23
  a:link,
24
  a:visited {
25
    @include single-text-shadow(none);
26
    padding: 2px 7px 3px;
27
  }
28

    
29
  .open > a {
30
    @include border-radius(7px 7px 0 0);
31
    &:hover {
32
      color: #333;
33
    }
34
  }
35

    
36
  .action-list li {
37
    margin: 0;
38
    &:first-child {
39
      @include border-radius(0 7px 0 0);
40
    }
41
    &:last-child {
42
      @include border-radius(0 0 7px 7px);
43
    }
44
  }
45
}
(20-20/21)