]> git.proxmox.com Git - sencha-touch.git/blob - src/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Button.scss
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / resources / themes / stylesheets / sencha-touch / tizen / variations / dark / src / _Button.scss
1 .x-button {
2 @include background($dark-button-background);
3
4 .x-button-label {
5 @include text-shadow(0 1px black);
6 color: $dark-button-label-color;
7 }
8
9 &.x-button-pressing {
10 @include background($dark-button-pressing-background);
11 .x-button-label {
12 @include text-shadow(0 -1px black);
13 }
14 }
15
16 &.x-button-confirm {
17 @include background($dark-button-confirm-background);
18 &.x-button-pressing {
19 @include background($dark-button-confirm-pressing-background);
20 }
21 }
22
23 &.x-button-decline {
24 @include background($dark-button-decline-background);
25 &.x-button-pressing {
26 @include background($dark-button-decline-pressing-background);
27 }
28 }
29
30 .x-button-icon {
31 &:before {
32 color: $dark-primary-text-color;
33 }
34 }
35 }
36
37 .x-hasbadge {
38 .x-badge {
39 color: $dark-primary-text-color;
40 background-color: $dark-badge-background-color;
41 @include box-shadow(1px 1px black);
42 }
43 }