~smagoun/whoopsie/whoopsie-lp1017637

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/build/datatable-base/assets/skins/night/datatable-base-skin.css

  • Committer: Evan Dandrea
  • Date: 2012-05-09 05:53:45 UTC
  • Revision ID: evan.dandrea@canonical.com-20120509055345-z2j41tmcbf4as5uf
The backend now lives in lp:daisy and the website (errors.ubuntu.com) now lives in lp:errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
YUI 3.5.0 (build 5089)
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
 
}