Compare Revisions
Last modification
- Rev 179 2013-07-01 03:08:55
- Author: PointedEars
- Log message:
Added support for fixed multi-view content and HTML form controls
/trunk/styles/lcars-responsive.css |
12,7 → 12,8 |
?> |
} |
|
.multi-display |
.multi-display, |
#content.fixed |
{ |
<?php |
Mixins::transition('', |
189,6 → 190,10 |
. 'top 0.5s 0.5s linear'); |
?> |
} |
|
#content.fixed { |
left: 22em; |
} |
|
.multi-display .lower .bg |
{ |
/trunk/styles/lcars-responsive-small.css |
120,10 → 120,9 |
opacity: 1; |
} |
|
.multi-display |
.multi-display, |
#content.fixed |
{ |
top: 0.2em; |
left: 0.2em; |
<?php |
Mixins::transition('', |
'top 0.25s 1.1475s linear,' |
130,6 → 129,17 |
. ' left 0.25s 1.3975s linear'); |
?> |
} |
|
.multi-display |
{ |
top: 0.2em; |
left: 0.2em; |
} |
|
#content.fixed { |
left: 6.4em; |
top: 9.6em; |
} |
|
.menu .bow |
{ |
180,4 → 190,4 |
.multi-display .upper .content .commands |
{ |
width: 5.2em; |
} |
} |
/trunk/styles/lcars22.css |
375,6 → 375,50 |
|
/* Controls */ |
|
input, |
select |
{ |
margin: 0 0.2em 0.2em 0; |
font-size: 1em; |
} |
|
input |
{ |
min-width: 4.875em; |
border: 1px solid #7d7d7d; |
padding: 0 0.125em; |
background-color: #000; |
color: #fff; |
} |
|
input:focus |
{ |
border-color: #f90; |
} |
|
select |
{ |
min-width: 5em; |
background-color: #7d7d7d; |
color: #000 !important; |
border: none; |
} |
|
select:focus |
{ |
background-color: #f90; |
color: #000; |
} |
|
option { |
background-color: #000; |
color: #fff; |
} |
|
option:checked { |
color: #fc6; |
} |
|
.button:visited, |
.button |
{ |
489,6 → 533,16 |
width: 5em !important; |
} |
|
#content.fixed { |
position: fixed; |
margin-right: 0.2em; |
top: 12em; |
right: 0; |
bottom: 0.2em; |
left: 16.8em; |
overflow: hidden; |
} |
|
.multi-display .upper |
{ |
position: absolute; |