aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/bluemoon/tabs.reel/tabs.css
blob: e3615a9b390c887688093d6b07e3b1ff748b80e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */
.montage-tabs {
    position: relative;
    display: inline-block;
    border-radius: 26px;

    background-color: #ccc;
    -webkit-box-shadow: rgba(255, 255, 255, .7) 0 1px 0, inset rgba(0, 0, 0, .3) 0 1px 3px;
}

.montage-tabs-indicator {
    position: absolute;
    left: 0;
    top: 0;
    height: 48px;
    margin: 2px;
    padding: 0px 10px;
    border-radius: 24px;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #fff), color-stop(100%, #e6e6e6));
    -webkit-box-shadow: rgba(0, 0, 0, .3) 0 1px 3px;

}

.montage-tabs-list {
    padding: 0;
    margin: 0;
    position: relative;
}

.montage-tabs-list li {
    display: inline-block;
    line-height: 46px;
    margin: 3px;
    padding: 0 10px;
    border-radius: 26px;
    font-family: 'AGBuchBQRegular', Helvetica, sans-serif;
    font-size: 18px;
    color: #555;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    cursor: pointer;
}

.montage-tabs-list li.selected {
    color: #333;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #fff), color-stop(100%, #e6e6e6));
    padding: 0 10px;
    -webkit-box-shadow: rgba(0, 0, 0, .3) 0 1px 3px;
}

.montage-tabs-list li img {
    margin-bottom: -2px; /* based on 16px icons */
    opacity: .5;
}

.montage-tabs-list li.selected img {
    opacity: 1;
}

.montage-tabs-list li span {
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* states */

.montage-tabs-list li.pressed {
    background-color: #aaa;
    -webkit-box-shadow: rgba(255, 255, 255, .2) 0 1px 0, inset rgba(0, 0, 0, .1) 0 2px 5px;
    -webkit-transition: background-color .15s ease-out;
}

/* ----------------------- Small ----------------------- */

/* tab width: 70px */

.montage-tabs.small .montage-tabs-indicator {
    height: 27px;
}

.montage-tabs.small .montage-tabs-list li {
    padding: 0 10px;
    line-height: 25px;

    font-size: 12px;
}

/* ----------------------- Dark theme ----------------------- */

.montage-tabs.dark {
    background-color: #404040;
    -webkit-box-shadow: rgba(255, 255, 255, .25) 0 1px 0, inset rgba(0, 0, 0, .3) 0 1px 3px;
}

.montage-tabs.dark .montage-tabs-indicator {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #767676), color-stop(100%, #5c5c5c));

}

.montage-tabs.dark .montage-tabs-list li {
    color: #bbb;
}

.montage-tabs.dark .montage-tabs-list li.selected {
    color: #333;
}

/* states */

.montage-tabs.dark .montage-tabs-list li.pressed {
    background-color: #333;
    -webkit-box-shadow: rgba(255, 255, 255, .05) 0 1px 0, inset rgba(0, 0, 0, .1) 0 2px 5px;
}