OLD | NEW |
---|---|
1 .hostlist_body { | 1 .hostlist_body { |
2 } | 2 } |
3 | 3 |
4 p { | 4 p { |
5 color: black; | 5 color: black; |
6 } | 6 } |
7 | 7 |
8 h1 { | 8 h1 { |
9 font-family: sans-serif; | 9 font-family: sans-serif; |
10 font-size: 2em; | 10 font-size: 2em; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
108 -webkit-user-select: none; | 108 -webkit-user-select: none; |
109 position: absolute; | 109 position: absolute; |
110 left: 20px; | 110 left: 20px; |
111 top: 20px; | 111 top: 20px; |
112 z-index: 1; | 112 z-index: 1; |
113 font-family: sans-serif; | 113 font-family: sans-serif; |
114 font-size: 2em; | 114 font-size: 2em; |
115 font-weight: bold; | 115 font-weight: bold; |
116 } | 116 } |
117 | 117 |
118 .login_panel { | 118 .error_msg { |
119 color: red; | |
120 } | |
121 | |
122 .gaia_login_panel { | |
119 -webkit-user-select: none; | 123 -webkit-user-select: none; |
124 font-family: arial,sans-serif; | |
120 position: absolute; | 125 position: absolute; |
121 display: none; | 126 display: none; |
122 z-index: 1; | 127 z-index: 1; |
123 top: 50%; | 128 top: 50%; |
124 left: 45%; | 129 left: 45%; |
125 border-style: solid; | 130 border: 2px solid #e8eefa; |
126 border-color: #D3D3D3 #808080; | |
127 margin-left: auto; | 131 margin-left: auto; |
128 margin-right: auto; | 132 margin-right: auto; |
129 width: 250px; | 133 } |
134 | |
135 .local_login_panel { | |
136 -webkit-user-select: none; | |
137 font-family: arial,sans-serif; | |
138 position: absolute; | |
139 display: none; | |
140 z-index: 1; | |
141 top: 50%; | |
142 left: 45%; | |
143 border: 2px solid #e8eefa; | |
144 margin-left: auto; | |
145 margin-right: auto; | |
130 } | 146 } |
131 | 147 |
132 .plugin-scroll-panel { | 148 .plugin-scroll-panel { |
133 -webkit-user-select: none; | 149 -webkit-user-select: none; |
134 overflow: auto; | 150 overflow: auto; |
135 width: 100%; | 151 width: 100%; |
136 height: 100%; | 152 height: 100%; |
137 } | 153 } |
154 | |
155 /* GAIA CSS */ | |
156 .gaia.le.lbl { font-family: Arial, Helvetica, sans-serif; } | |
Sergey Ulanov
2011/02/15 22:06:43
Do we really need this to be verbatim copy from ga
garykac
2011/02/16 18:43:06
Done.
| |
157 .gaia.le.fpwd { font-family: Arial, Helvetica, sans-serif; font-size: 70%; } | |
158 .gaia.le.chusr { font-family: Arial, Helvetica, sans-serif; font-size: 70%; } | |
159 .gaia.le.val { font-family: Arial, Helvetica, sans-serif; } | |
160 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; } | |
161 .gaia.le.rem { font-family: Arial, Helvetica, sans-serif; font-size: smaller; } | |
OLD | NEW |