aboutsummaryrefslogtreecommitdiff
path: root/scss/imports/scss/_toolbar.scss
blob: 9440fa85317f877821aecc85ab72f762b3fee578 (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
127
128
129
130
131
132
133
134
135
// <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>

// 
// toolbar.scss
// Styles governing the individual tools.
// Note that colors and font definitions go in 
// _scss/themes/themename/_colors.scss and _scss/themes/themename/_fonts.scss
  

//  New Tool List CSS
#toolsPanelContent {
    width:40px;
}

.toolsList {
    width:29px;
    margin:auto;
}

.toolsList hr {
    border:0px;
    border-top: 1px solid #232323;
    border-bottom: 1px solid #3A3A3A;
    margin:2px;
    width:100%;
}

.toolbutton {
    width:29px;
    height:29px;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius:3px;
    opacity: 1;
    margin-bottom: 2px;
    -webkit-transform: scale(0.8);
    -webkit-transition: 0.15s all cubic-bezier(.44,.19,0,.99);
}

.toolbutton:hover, .toolbutton.active {
    box-shadow:  0px 0px 2px 2px #999;

    -webkit-transform: scale(1);
    opacity: 1;
}

.toolbutton:active {
    background-color: #8c8c8c;
}

.toolbutton.active {
    box-shadow: inset 0px 0px 2px 2px #999;
    background-color:#363636;
}

.SelectionTool {
    background-image:url("../images/tools/Tool-Selection.png");
}

.RotateTool3D {
    background-image:url("../images/tools/Tool-3DRotate.png");
}

.Translate3D {
    background-image:url("../images/tools/Tool-3DTranslate.png");
}

.TagTool {
    background-image:url("../images/tools/Tool-Tag.png");
}

.PenTool {
    background-image:url("../images/tools/Tool-Pen.png");
}

.TextTool {
    background-image:url("../images/tools/Tool-Text.png");
}

.ShapeContainer {
    background-image:url("../images/tools/Tool-Rectangle.png");
}

.OvalTool {
    background-image:url("../images/tools/Tool-Oval.png");
}

.RectangleTool {
    background-image:url("../images/tools/Tool-Square.png");
}

.LineTool {
    background-image:url("../images/tools/Tool-Line.png");
}

.PencilTool {
    background-image:url("../images/tools/Tool-Pencil.png");
}

.BrushTool {
    background-image:url("../images/tools/Tool-PaintBrush.png");
}

.FillTool {
    background-image:url("../images/tools/Tool-Fill.png");
}

.EraserTool {
    background-image:url("../images/tools/Tool-Erase.png");
}

.RotateStageTool3D {
    background-image:url("../images/tools/Tool-3DRotateStage.png");
}

.TranslateStageTool3D {
    background-image:url("../images/tools/Tool-3DTranslateStage.png");
}

.PanTool {
    background-image:url("../images/tools/Tool-Pan.png");
}

.ZoomTool {
    background-image:url("../images/tools/Tool-Zoom.png");
}

.InkBottleTool {
    background-image:url("../images/tools/Tool-FillColor.png");
}