Fossil

Check-in [68f4c2b0]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:The default skin requires 1200px or more before the "wideonly" class is displayed.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 68f4c2b048ad1e48834bce6ce194cfb288181040a487dedcc4c17c94f05f6eb9
User & Date: drh 2018-09-11 00:56:09.388
Context
2018-09-11
14:29
Compile openssl with option no-weak-ssl-ciphers (or -DOPENSSL_NO_WEAK_SSL_CIPHERS) Update custum Makefile.mingw ... (check-in: 58b7b4e5 user: jan.nijtmans tags: trunk)
00:56
The default skin requires 1200px or more before the "wideonly" class is displayed. ... (check-in: 68f4c2b0 user: drh tags: trunk)
00:52
Fixes to the new script element of skins. ... (check-in: c22b71df user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to skins/default/css.txt.
257
258
259
260
261
262
263
264
265
266
267
268
269
  .mainmenu a {
    padding: 10px 20px;
  }
  .mainmenu {
    padding: 10px;
  }
}
@media screen and (max-width: 950px) {
  /* Special declarations for narrow desktop or wide mobile */
  .wideonly {
    display: none;
  }
}







|





257
258
259
260
261
262
263
264
265
266
267
268
269
  .mainmenu a {
    padding: 10px 20px;
  }
  .mainmenu {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  /* Special declarations for narrow desktop or wide mobile */
  .wideonly {
    display: none;
  }
}