source: branches/1.2/workflow/templates/default/css/experience.panorama.css @ 1349

Revision 1349, 2.5 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

Line 
1/* -------------------------------------------------------------------------- *
2 *   Experience Javascript Library (version 1.0b)
3 *  (c) 2007 Ahmed Saad <ahmeds@users.sourceforge.net>
4 *
5 *  Experience is freely distributable under the terms of an MIT-style license.
6 *  For details, see project website at http://experience.sf.net
7 * -------------------------------------------------------------------------- */
8
9/* Styling for the Experience::Panorama GUI component */
10
11.panoramaCanvas {     
12    background-color: white;
13
14    /* Don't edit any of the following
15       unless you know what you're doing .. */
16    margin: 0;
17    padding: 0;
18    border: 0;
19    top: 0;
20    left: 0;
21    bottom: 0;
22    right: 0;
23    width: 100%;
24    height: 100%;
25    visibility: hidden;
26    overflow: hidden;
27    /* position */
28}
29
30.panoramaImage {
31    margin: 0;
32    padding: 0;
33    border-width: 0;
34}
35
36.panoramaCloseIcon {
37   position: absolute;
38   right: 10px;
39   top: 10px;
40   cursor: pointer;
41}
42
43.panoramaAboutIcon {
44    top: 10px;
45    left: 10px;
46    position: absolute;
47    cursor: pointer;   
48}
49
50.panoramaZoomInIcon {
51    top: 10px;
52    left: 40px;
53    position: absolute;
54    cursor: pointer;
55}
56
57.panoramaZoomOutIcon {
58    top: 10px;
59    left: 60px;
60    position: absolute;
61    cursor: pointer;
62}
63
64.panoramaRestoreSizeIcon {
65    top: 10px;
66    left: 80px;
67    position: absolute;
68    cursor: pointer;
69}
70
71.panoramaRestorePositionIcon {
72    top: 10px;
73    left: 100px;
74    position: absolute;
75    cursor: pointer;
76}
77
78/*
79    Navigator positioning is done
80    according to the following model
81
82    -------------------
83    16 | 16 | 16 | 10
84    16 | 16 | 16 | 10
85    16 | 16 | 16 | 10
86    10 | 10 | 10 |
87    ------------------
88
89    16 is icon size
90    10 is margin
91*/
92
93.panoramaGoDownIcon {
94    bottom: 10px;
95    right: 26px;
96    position: absolute;
97    cursor: default;
98}
99
100.panoramaGoUpIcon {
101    bottom: 42px;
102    right: 26px;
103    position: absolute;
104    cursor: default;
105}
106
107.panoramaGoRightIcon {
108    bottom: 26px;
109    right: 10px;
110    position: absolute;
111    cursor: default;
112}
113
114.panoramaGoLeftIcon {
115    bottom: 26px;
116    right: 42px;
117    position: absolute;
118    cursor: default;
119}
120
121.panoramaZoomDropdown{
122    bottom: 10px;
123    left: 10px;
124    position: absolute;
125    border-width: 0;
126    background-color: #93C16A;
127    color: black;
128    cursor: default;
129}
130
131.panoramaStatus {
132    top: 10px;
133    right: 40px;
134    position: absolute;
135    color: white;
136}
Note: See TracBrowser for help on using the repository browser.