/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/css/popup.css

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-28 15:21:12 UTC
  • mfrom: (83.2.23 pvp)
  • Revision ID: gustav.hartvigsson@gmail.com-20130528152112-pn1d6h8o6udcia0b
merged  Bigestans:s changes.


* Moved login JS to bannermenu.js and removed login.js
* Removed deprecated login CSS and JS
* Fixed login functionality -- now shows validation errors directly in the login popup, works through ajax
* Added a nifty little icon to represent the disabled login hint button
* Removed temporary functions from cms controller: tempLogin(), tempLogout(), test()
* Cleaned up ajax.php and cms.php

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
        margin-top: -90px;
128
128
}
129
129
 
 
130
#login.error {
 
131
        height: 240px;
 
132
}
 
133
 
 
134
#login .errorContainer {
 
135
        height: 70px;
 
136
        margin: 0 10px;
 
137
        color: #666;
 
138
        line-height: 130%;
 
139
        text-align: center;
 
140
}
 
141
 
130
142
#login.expanded {
131
143
        height: 216px;
132
144
}
141
153
}
142
154
 
143
155
#login .hint {
144
 
        background: url('../img/loginhint.png');
 
156
        background: url('../img/loginhint_disabled.png');
145
157
        width: 33px;
146
158
        height: 33px;
147
159
        text-indent: -999em;
148
160
        overflow: hidden;
149
161
        border: 0;
 
162
        cursor: default;
 
163
}
 
164
 
 
165
#login .hint.available {
 
166
        cursor: pointer;
 
167
        background: url('../img/loginhint.png');
150
168
}
151
169
 
152
170
#login .hint:active, #login.expanded .hint {
 
171
        cursor: pointer;
153
172
        background: url('../img/loginhint_active.png');
154
173
}
155
174
 
156
175
#login #hinttext {
157
176
        border-top: 1px #ccc solid;
158
177
        margin: 10px -10px -5px;
159
 
        padding: 5px 0;
 
178
        padding: 5px 0 5px 10px;
160
179
        color: #999;
161
 
        text-indent: 10px;
162
180
        display: none;
163
181
        height: 20px;
164
 
        font-size: .6em;
165
182
}
166
183
 
167
184
#login #hinttext p {