Definition of new styles
authorStéphane Leroy <sleroy@argeo.org>
Thu, 8 Oct 2020 17:22:24 +0000 (18:22 +0100)
committerStéphane Leroy <sleroy@argeo.org>
Thu, 8 Oct 2020 17:22:24 +0000 (18:22 +0100)
org.argeo.suite.theme.default/rap/work.css
org.argeo.suite.ui/src/org/argeo/suite/ui/SuiteStyle.java

index 5b0e097313696b6b2e41d1b3854042a78ebb0ead..a01045d52d507aca552dec9fe6aa47381f2e6a4d 100644 (file)
@@ -1,12 +1,12 @@
 .argeo-suite-header {
        color: white;
-       background-color: #113f64;
+       background-color: #00294b;
 }
 
 .argeo-suite-headerTitle {
        font: bold 18px sans-serif;
        color: white;
-       background-color: #113f64;
+       background-color: #00294b;
 }
 
 .argeo-suite-leadPane {
@@ -23,27 +23,50 @@ Button.argeo-suite-leadPane {
 .argeo-suite-recentItems {
        font: bold 14px sans-serif;
        color: white;
-       background-color: #204a87;
+       background-color: #00294b;
        padding: 8px 16px;
 }
 
+.argeo-suite-titleContainer {
+       background-color: #00294b;
+       padding: 6px 8px 4px 8px;
+}
+
 .argeo-suite-titleLabel {
        font: bold 14px sans-serif;
        color: white;
-       background-color: #204a87;
-       padding: 8px 16px;
+       background-color: #00294b;
 }
 
 .argeo-suite-subTitleLabel {
        font: italic 14px sans-serif;
        color: #777;
-       padding: 4px 16px 8px 16px;
+       padding: 4px 8px;
 }
 
 .argeo-suite-simpleLabel {
        font:bold 14px sans-serif;
+       padding:0 0 0 8px;
 }
 
 .argeo-suite-simpleText {
-       
+}
+
+.argeo-suite-titleCell{
+       font:bold 14px sans-serif;
+       background-color:#ddd;
+}
+
+.argeo-suite-inlineButton {
+       padding:0px 4px;
+       font: 12px sans-serif;
+       border:1px solid white;
+       color:white;
+       background-image:none;
+       background-color:#00294b;
+}
+
+.argeo-suite-inlineButton:hover {
+       color:#00294b;
+       background-color:white;
 }
\ No newline at end of file
index 2d15248301fec30c61a370c6d6fe650db7d819f5..75f2aeb0f24ff6242dee4522073604e72a58db48 100644 (file)
@@ -10,11 +10,15 @@ public enum SuiteStyle implements CmsStyle {
        recentItems,
        // Lead pane
        leadPane,leadPaneItem,
-       // Groups composite
-       titleLabel,subTitleLabel,
+       // Group composite
+       titleContainer,titleLabel,subTitleLabel,
        // Forms elements
-       simpleLabel, simpleText;
-
+       simpleLabel, simpleText,
+       // table
+       titleCell,
+       // Buttons
+       inlineButton;
+       
        @Override
        public String getClassPrefix() {
                return "argeo-suite";