~ubuntu-branches/ubuntu/precise/maas/precise-updates

« back to all changes in this revision

Viewing changes to debian/extras/jslibs/yui/datatable-base/assets/skins/night/datatable-base-skin.css

Tags: 1.2+bzr1373+dfsg-0ubuntu1~12.04.4
* SECURITY UPDATE: failure to authenticate downloaded content (LP: #1039513)
  - debian/patches/CVE-2013-1058.patch: Authenticate downloaded files with
    GnuPG and MD5SUM files. Thanks to Julian Edwards.
  - CVE-2013-1058
* SECURITY UPDATE: configuration options may be loaded from current working
  directory (LP: #1158425)
  - debian/patches/CVE-2013-1057-1-2.patch: Do not load configuration
    options from the current working directory. Thanks to Julian Edwards.
  - CVE-2013-1057

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
YUI 3.5.1 (build 22)
 
3
Copyright 2012 Yahoo! Inc. All rights reserved.
 
4
Licensed under the BSD License.
 
5
http://yuilibrary.com/license/
 
6
*/
 
7
/* basic skin styles */
 
8
.yui3-skin-night .yui3-datatable {
 
9
        color:#8E8E8E;
 
10
        font-family: HelveticaNeue,arial,helvetica,clean,sans-serif;
 
11
}
 
12
.yui3-skin-night .yui3-datatable-table {
 
13
    border: 1px solid #323434;
 
14
    border-collapse: separate;
 
15
    border-spacing: 0;
 
16
        color: #8E8E8E;
 
17
    margin: 0;
 
18
    padding: 0;
 
19
}
 
20
 
 
21
.yui3-skin-night .yui3-datatable-caption {
 
22
    color: #474747;
 
23
    font: italic 85%/1 HelveticaNeue,arial,helvetica,clean,sans-serif;
 
24
    padding: 1em 0;
 
25
    text-align: center;
 
26
}
 
27
 
 
28
.yui3-skin-night .yui3-datatable-cell,
 
29
.yui3-skin-night .yui3-datatable-header {
 
30
    border-left: 1px solid #303030;/*  inner column border */
 
31
    border-width: 0 0 0 1px;
 
32
    font-size: inherit;
 
33
    margin: 0;
 
34
        overflow: visible; /*to make ths where the title is really long work*/
 
35
    padding: 4px 10px 4px 10px; /* cell padding */
 
36
}
 
37
.yui3-skin-night .yui3-datatable-cell:first-child,
 
38
.yui3-skin-night .yui3-datatable-first-header {
 
39
    border-left-width: 0;
 
40
}
 
41
 
 
42
.yui3-skin-night .yui3-datatable-header {
 
43
    /* header gradient */
 
44
    background-color:#3b3c3d;
 
45
 
 
46
        background: -moz-linear-gradient(
 
47
                0% 100% 90deg, 
 
48
                #242526 0%, 
 
49
                #3b3c3d 96%,
 
50
                #2C2D2F 100%
 
51
        );
 
52
    background: -webkit-gradient(
 
53
        linear,
 
54
        left bottom,
 
55
        left top,
 
56
        from(#242526),
 
57
        color-stop(0.96, #3b3c3d),
 
58
        to(#2C2D2F)     
 
59
    );
 
60
    color: #eee;
 
61
    font-weight: normal;
 
62
    text-align: left;
 
63
    vertical-align: bottom;
 
64
    white-space: nowrap;
 
65
}
 
66
 
 
67
/*
 
68
striping:
 
69
   even - #0e0e0e (darkest)
 
70
   odd  - #1d1e1e (lighter)
 
71
*/
 
72
.yui3-skin-night .yui3-datatable-cell {
 
73
    background-color: transparent;
 
74
}
 
75
.yui3-skin-night .yui3-datatable-even .yui3-datatable-cell {
 
76
    background-color: #0e0e0e;
 
77
}
 
78
.yui3-skin-night .yui3-datatable-odd .yui3-datatable-cell  {
 
79
    background-color: #1d1e1e;
 
80
}