Update of /cvsroot/qooxdoo/qooxdoo/source/style
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26687/source/style
Modified Files:
Tag: renderer
demolayout.css qooxdoo.css
Log Message:
Moved many styling stuff to the widgets, dramatically reduced size of qooxdoo.css, direct font handling in appearance of QxLabel and QxTextField, default font-size for all qooxdoo widgets is from now on zero.
Index: demolayout.css
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/style/Attic/demolayout.css,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- demolayout.css 20 Dec 2005 07:07:36 -0000 1.1.2.2
+++ demolayout.css 24 Jan 2006 16:48:55 -0000 1.1.2.3
@@ -1,3 +1,17 @@
+body{
+ font-size: 11px;
+ font-family: Arial, "Bitstream Vera Sans", Verdana, sans-serif;
+}
+
+#testHead,
+#testFoot,
+#testFrame,
+#testDescription
+{
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
+}
+
#testHead,
#testFoot{
position: absolute;
Index: qooxdoo.css
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/style/Attic/qooxdoo.css,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- qooxdoo.css 1 Dec 2005 09:13:26 -0000 1.1.2.3
+++ qooxdoo.css 24 Jan 2006 16:48:55 -0000 1.1.2.4
@@ -1,87 +1,12 @@
-*{
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- margin: 0;
- padding: 0;
-}
-
html, body {
- border: 0 none;
- color: windowtext;
- background: threedface;
-
- /*
- We need to use overflow hidden and width/height 100% to be able to
- have control over the scroll bars
- */
overflow: hidden;
width: 100%;
height: 100%;
-}
-
-/*
- Use -moz-scrollbars-unscrollable instead of hidden because Moz 1.4 treats
- hidden as non-accessible
-*/
-:root,
-:root > body {
- overflow: -moz-scrollbars-unscrollable;
-}
-
-html, body, td, th, input, textarea{
- font-size: 11px;
- font-family: "Segoe UI", Corbel, Calibri, Tahoma, "Lucida Sans Unicode", sans-serif;
-}
-
-img{
- box-sizing: content-box;
- -moz-box-sizing: content-box;
border: 0 none;
- vertical-align: top;
-}
-
-.QxWidgetCore {
- position: absolute;
-}
-
-.QxInline {
- position: relative;
-}
-
-.QxBlocker {
- cursor: default;
-}
-
-.QxImage{
- display: inline;
- text-align: left;
-}
-
-.QxLabel{
- white-space: nowrap;
-}
-
-.QxMnemonic {
- text-decoration: underline;
+ padding: 0;
+ margin : 0;
}
.QxInputCheckIcon{
- height: 13px;
- width: 13px;
-
margin: 0;
- padding: 0;
}
-
-.QxPopup,
-.QxMenu {
- z-index: 100000;
-}
-
-.QxToolTip {
- z-index: 1000000;
-}
-
-.QxSpinner *{
- overflow: hidden;
-}
\ No newline at end of file
|