Procházet zdrojové kódy

Make some menu elements smaller on narrow screens

master
Fen Dweller před 4 roky
rodič
revize
04b78fb1cd
1 změnil soubory, kde provedl 17 přidání a 5 odebrání
  1. +17
    -5
      macrovision.css

+ 17
- 5
macrovision.css Zobrazit soubor

@@ -467,10 +467,11 @@ body.toggle-bottom-name .bottom-name {
display: inline; display: inline;
} }


#menubar input,
#menubar select { #menubar select {
font-size: 16pt; font-size: 16pt;
max-width: 200pt;
min-width: 120pt;
max-width: 120pt;
min-width: 60pt;
height: 40pt; height: 40pt;
max-height: 180pt; max-height: 180pt;
overflow: hidden; overflow: hidden;
@@ -479,6 +480,13 @@ body.toggle-bottom-name .bottom-name {
text-overflow: ellipsis; text-overflow: ellipsis;
} }


@media (min-width: 600px) {
#menubar input,
#menubar select {
max-width: 200pt;
}
}

#menubar button { #menubar button {
position: relative; position: relative;
font-size: 32pt; font-size: 32pt;
@@ -673,11 +681,15 @@ option.filtered {
display: none; display: none;
} }


#spawners > select,
#filters > select {
font-size: 24pt;
@media (min-width: 600px)
{
#spawners > select,
#filters > select {
font-size: 24pt;
}
} }



#spawners > button { #spawners > button {
font-size: 30pt; font-size: 30pt;
} }


Načítá se…
Zrušit
Uložit