~mhall119/+junk/canonicalauth-package

« back to all changes in this revision

Viewing changes to theme/text-input.css

  • Committer: mhall119
  • Date: 2013-05-31 18:01:39 UTC
  • Revision ID: mhall119@ubuntu.com-20130531180139-5py6gsiegf8jvu8l
Add Ubuntu SDK theme

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.textfield, .textarea {
 
2
        background: rgba(0, 0, 0, 0.1);
 
3
        border: 0;
 
4
        border-radius: 6px;
 
5
        color: lightgray;
 
6
        font-family: Ubuntu;
 
7
        padding: 8px;
 
8
        text-shadow: 0 1px 1px rgba(0.5, 0.5, 0.5, 0.5);
 
9
        -webkit-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.1);
 
10
}
 
11
 
 
12
.textfield:focus, .textarea:focus {
 
13
        background: #fff;
 
14
        color: #757373;
 
15
        font-family: Ubuntu;
 
16
        outline: none;
 
17
}
 
18
 
 
19
.textfield:not([value]), .textarea:not([value]) {
 
20
        color: #757373;
 
21
}
 
22
 
 
23
.textfield[disabled], .textarea[disabled] {
 
24
        background: rgba(255, 255, 255, 0.1);
 
25
}
 
26
 
 
27
.textfield.clear:focus {
 
28
        background: url(artwork/icon_clear@20.png) no-repeat 99% center #fff;
 
29
}
 
30
 
 
31
.textfield.label, .textarea.label {
 
32
        background: none !important;
 
33
        font-size: 12px;
 
34
        padding: 0 !important;
 
35
        -webkit-box-shadow: none !important;
 
36
}