Clean CSS

This commit is contained in:
Nicolas Stepien 2011-06-15 18:08:12 +02:00
parent e59f1a8e04
commit fa0a58a101
2 changed files with 18 additions and 18 deletions

View File

@ -2684,7 +2684,7 @@
padding: 5px;\ padding: 5px;\
min-width: 500px;\ min-width: 500px;\
}\ }\
#options .move, #credits {\ #credits {\
text-align: right;\ text-align: right;\
}\ }\
#options ul {\ #options ul {\
@ -2702,6 +2702,14 @@
overflow: auto;\ overflow: auto;\
height: 450px;\ height: 450px;\
}\ }\
.overlay {\
position: fixed;\
width: 100%;\
height: 100%;\
top: 0;\
left: 0;\
background-color: rgba(0,0,0,.5);\
}\
\ \
#qr {\ #qr {\
position: fixed;\ position: fixed;\
@ -2786,14 +2794,6 @@
.inlined {\ .inlined {\
opacity: .5;\ opacity: .5;\
}\ }\
.overlay {\
position: fixed;\
width: 100%;\
height: 100%;\
top: 0;\
left: 0;\
background-color: rgba(0,0,0,.5);\
}\
' '
}; };
main.init(); main.init();

View File

@ -2054,7 +2054,7 @@ main =
padding: 5px; padding: 5px;
min-width: 500px; min-width: 500px;
} }
#options .move, #credits { #credits {
text-align: right; text-align: right;
} }
#options ul { #options ul {
@ -2072,6 +2072,14 @@ main =
overflow: auto; overflow: auto;
height: 450px; height: 450px;
} }
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0,0,0,.5);
}
#qr { #qr {
position: fixed; position: fixed;
@ -2156,14 +2164,6 @@ main =
.inlined { .inlined {
opacity: .5; opacity: .5;
} }
.overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0,0,0,.5);
}
' '
main.init() main.init()