mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-11 23:14:13 +03:00
90a15a9753
Some fixes are needed elsewhere but non-obvious ones I'll post on the mailing list for discussion. Currently it opens windows with a toolbar, url and status bar, a (yet empty) menu bar. Rendering seems to work including scrolling at scale 1 (other non-tested). framesets seems broken though. svn path=/trunk/netsurf/; revision=4253
22 lines
646 B
CSS
22 lines
646 B
CSS
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
*/
|
|
|
|
/* Load base stylesheet. */
|
|
|
|
@import "default.css";
|
|
|
|
/* Apply GTK specific rules. */
|
|
|
|
input { font-size: 95%; border: medium inset #ddd; }
|
|
input[type=button], input[type=reset], input[type=submit], button {
|
|
background-color: #ddd; border: medium outset #ddd; }
|
|
input[type=checkbox], input[type=radio] { font-size: 105%; }
|
|
input[type=file] { background-color: #ddd; border: medium inset #ddd; }
|
|
|
|
select { background-color: #ddd; border: medium inset #ddd; font-size: 95%; }
|
|
select:after { border-left:4px ridge #ddd; }
|
|
|
|
textarea { font-size: 95%; border: medium inset #ddd; }
|
|
|