~ubuntu-branches/ubuntu/quantal/maas/quantal-proposed

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/build/calendar-base/assets/skins/sam/calendar-base-skin.css

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-07-03 17:42:37 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120703174237-p8l0keuuznfg721k
Tags: 0.1+bzr709+dfsg-0ubuntu1
* New Upstream release
* debian/control:
  - Depends on python-celery, python-tempita, libjs-yui3-{full,min},
    libjs-raphael
* debian/maas.install:
  - Install apiclient, celeryconfig.py, maas-import-pxe-files, preseeds_v2.
  - Update to install various files from chroot, rather tha manually copy
    them from the source.
* debian/maas.links: symlink celeryconfig.py
* debian/maas.maas-celery.upstart: Add job.
* debian/rules:
  - Install celery upstart job.
  - Do not install jslibs as packages are now used.
  - Drop copying of maas_local_settings_sample.py as source now ships
    a maas_local_settings.py
* debian/patches:
  - 04-maas-http-fix.patch: Drop. Merged upstream.
  - 01-fix-database-settings.patch: Refreshed.
  - 99_enums_js.patch: Added until creation of enum.js / build process
    is fixed.
* debian/maas.postinst: Update bzr version to correctly handle upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
YUI 3.4.1 (build 4118)
3
 
Copyright 2011 Yahoo! Inc. All rights reserved.
4
 
Licensed under the BSD License.
5
 
http://yuilibrary.com/license/
6
 
*/
7
 
.yui3-skin-sam .yui3-calendar-content {
8
 
    padding:10px;
9
 
    font-size:0.8em;
10
 
    font-family:"Lucida Grande", "Lucida Sans", Calibri, Helvetica, Arial, sans-serif;
11
 
    color: #000000;
12
 
    border: 1px solid gray;
13
 
    background: #f2f2f2; /* Old browsers */
14
 
    background: -moz-linear-gradient(top, #f9f9f9 0%, #f2f2f2 100%); /* FF3.6+ */
15
 
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
16
 
    background: -webkit-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
17
 
    background: -o-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* Opera11.10+ */
18
 
    background: -ms-linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* IE10+ */
19
 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
20
 
    background: linear-gradient(top, #f9f9f9 0%,#f2f2f2 100%); /* W3C */
21
 
    -moz-border-radius: 5px;
22
 
    border-radius: 5px;
23
 
}
24
 
 
25
 
.yui3-skin-sam .yui3-calendar-grid {
26
 
    padding:5px;
27
 
    border-collapse: collapse;
28
 
}
29
 
 
30
 
.yui3-skin-sam .yui3-calendar-header {
31
 
    padding-bottom:10px;
32
 
}
33
 
 
34
 
.yui3-skin-sam .yui3-calendar-header-label h4 {
35
 
    margin: 0;
36
 
    font-size: 1em;
37
 
    font-weight: bold;
38
 
}
39
 
 
40
 
.yui3-skin-sam .yui3-calendar-selection-disabled {
41
 
  color: #555555;
42
 
}
43
 
 
44
 
.yui3-skin-sam .yui3-calendar-day,
45
 
.yui3-skin-sam .yui3-calendar-prevmonth-day, 
46
 
.yui3-skin-sam .yui3-calendar-nextmonth-day {
47
 
    border: 1px solid #CCCCCC;
48
 
    background: #FFFFFF;
49
 
    text-align:center;
50
 
}
51
 
 
52
 
.yui3-skin-sam .yui3-calendar-day:hover {
53
 
    background: #0066CC;
54
 
    color: #FFFFFF;
55
 
}
56
 
 
57
 
.yui3-skin-sam .yui3-calendar-selection-disabled,
58
 
.yui3-skin-sam .yui3-calendar-selection-disabled:hover {
59
 
  color: #A6A6A6;
60
 
  background: #CCCCCC;
61
 
}
62
 
 
63
 
.yui3-skin-sam .yui3-calendar-weekday {
64
 
        font-weight: bold;
65
 
}
66
 
 
67
 
.yui3-skin-sam .yui3-calendar-prevmonth-day, .yui3-calendar-nextmonth-day {
68
 
  color: #A6A6A6;
69
 
}
70
 
 
71
 
.yui3-skin-sam .yui3-calendar-day {
72
 
        font-weight: bold;
73
 
}
74
 
 
75
 
.yui3-skin-sam .yui3-calendar-day-selected {
76
 
        background-color: #B3D4FF;
77
 
        color: #000000;
78
 
 
79
 
}
80