make links have more contrast to black, add new design to SeaMonkey profile manager
authorRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 6 Jan 2013 19:57:10 +0000 (20:57 +0100)
committerRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 6 Jan 2013 19:57:10 +0000 (20:57 +0100)
16 files changed:
LCARStrek/browser/aboutSyncTabs.css
LCARStrek/browser/browser.css
LCARStrek/browser/feeds/subscribe.css
LCARStrek/browser/preferences/preferences.css
LCARStrek/communicator/aboutSyncTabs.css
LCARStrek/communicator/directory/directory.css
LCARStrek/communicator/profile/profile.css
LCARStrek/communicator/profile/profile.png [new file with mode: 0644]
LCARStrek/communicator/profile/profileicon-large.gif [deleted file]
LCARStrek/global/about.css
LCARStrek/global/alerts/alert.css
LCARStrek/global/global.css
LCARStrek/global/tabbox.css
LCARStrek/global/tree.css
LCARStrek/messenger/addressbook/addressbook.css
LCARStrek/mozapps/extensions/extensions.css

index 937a4c8a5cd2df7bf895a69ffb7d4d50ceae9a65..1950574a624e16d0f6b596618d10d859167adbb0 100644 (file)
@@ -72,7 +72,7 @@ richlistitem.desktop[type="client"] {
 }
 
 .url {
-  color: blue;
+  color: #3333FF;
   font-size: 0.95em;
 }
 
index c301532822ea18a9bf791154758173b6f6aa0791..8e759cbb7d172bf479f4ffc905b5a83165b5c6d5 100644 (file)
@@ -1830,7 +1830,7 @@ richlistitem[type~="action"][actiontype="switchtab"][selected="true"] > .ac-url-
   background-color: #E7ADE7;
 }
 .tabbrowser-tab[pinned][titlechanged]:not([selected="true"]):hover {
-  background-color: #0000FF;
+  background-color: #3333FF;
   color: #000000;
 }
 
index b7d0cbb9c7bbaee0ede784a394e5d1803a81b6ec..4a9f66d39bdde48f908f1745c7a0dc9a7870e14c 100644 (file)
@@ -127,7 +127,7 @@ a[href] img {
 }
 
 .link {
-  color: #0000FF;
+  color: #3333FF;
   text-decoration: underline;
   cursor: pointer;
 }
index 18a3bf7f477d60692ae98fe3cfe3105a0e8362aa..c4a7201adb4915f35cdb028bfb646f2ed87e9953 100644 (file)
@@ -84,7 +84,7 @@ radio[pane=paneSync] {
 
 /* styles for the link elements copied from .text-link in global.css */
 .inline-link {
-  color: blue;
+  color: #3333FF;
   text-decoration: underline;
   cursor: pointer;
 }
index 48460f97e556254cdd2ed6539358dc2ff5f9b2fb..5d955a6f89f6707b851f2e9fb5f7a8ba1bec0959 100644 (file)
@@ -64,7 +64,7 @@ richlistitem.desktop[type="client"] {
 }
 
 .url {
-  color: blue;
+  color: #3333FF;
   font-size: 0.95em;
 }
 
index 530772da389481b85e8f0832d1dd66a6c9af9682..d32d2025ee9e6151e596f765e8da9a5bb87fcdf0 100644 (file)
@@ -62,7 +62,7 @@ treechildren::-moz-tree-cell-text(symbolic-link) {
 }
 
 div.server { 
-  color: blue;
+  color: #3333FF;
   display: block; 
   font-size: 10pt;
   font-family: sans-serif;
index d5802ed9bde17128a5ef45068483bfe97804e9bb..d6f10759af2d3832ee196c65b07c4681a62d3d29 100644 (file)
@@ -10,13 +10,56 @@ window.dialog {
   padding: 0;
 }
 
+/* Make nice LCARS border */
+.dialog-content-box {
+  background-color: #A09090;
+  border-radius: 5px 0 0 0;
+}
+
+.dialog-content-box:-moz-locale-dir(rtl) {
+  border-radius: 0 5px 0 0;
+}
+
+#header {
+  background-color: #9C9CFF;
+  color: #000000;
+  border: none;
+  -moz-border-start: 3px solid #000000;
+  border-radius: 0;
+  -moz-margin-start: 37px;
+}
+
+.wizard-box {
+  background-color: #000000;
+  border-radius: 5px 0 0 0;
+  -moz-margin-start: 5px;
+}
+
+.wizard-box:-moz-locale-dir(rtl) {
+  border-radius: 0 5px 0 0;
+}
+
+.dialog-button-box {
+  -moz-border-start: 5px solid #8050B0; /* match wizard-box margin */
+  -moz-padding-start: 2px;
+  margin-top: 3px;
+}
+
 treechildren::-moz-tree-image {
   -moz-margin-end: 2px;
-  list-style-image: url("chrome://communicator/skin/profile/profileicon-large.gif");
+  list-style-image: url("chrome://communicator/skin/profile/profile.png");
+  -moz-image-region: rect(0, 10px, 12px, 0);
+}
+
+treechildren::-moz-tree-image(selected) {
+  -moz-margin-end: 2px;
+  list-style-image: url("chrome://communicator/skin/profile/profile.png");
+  -moz-image-region: rect(0, 20px, 12px, 10px);
 }
 
 treechildren::-moz-tree-image(rowMigrate-no) {
   list-style-image: url("chrome://communicator/skin/profile/migrate.gif");
+  -moz-image-region: auto;
 }
 
 /* profile selection dialog */
diff --git a/LCARStrek/communicator/profile/profile.png b/LCARStrek/communicator/profile/profile.png
new file mode 100644 (file)
index 0000000..de3ecb9
Binary files /dev/null and b/LCARStrek/communicator/profile/profile.png differ
diff --git a/LCARStrek/communicator/profile/profileicon-large.gif b/LCARStrek/communicator/profile/profileicon-large.gif
deleted file mode 100755 (executable)
index 60936c1..0000000
Binary files a/LCARStrek/communicator/profile/profileicon-large.gif and /dev/null differ
index cf68269435bc0958a8bccdb033d10825653199e4..1e5a1074f63ef8a7d19e2bb57ceece817c1bd6f1 100644 (file)
@@ -22,7 +22,8 @@ body {
 }
 
 #aboutLogoContainer {
-  border: 1px solid #E7ADE7;
+  border: 1px solid #3333FF;
+  border-radius: 5px;
   width: 300px;
   margin-bottom: 2em;
 }
@@ -31,6 +32,10 @@ img {
   border: 0;
 }
 
+#vendorURL {
+  text-decoration: none;
+}
+
 #version {
   font-weight: bold;
   color: #008484;
@@ -59,3 +64,7 @@ th, td {
   -moz-column-width: 20em;
   -moz-column-gap: 3em;
 }
+
+a:link {
+  color: #3333FF;
+}
index 593fdca14e95cdc94893f9f53f9e87dc4d22faed..44f905066177b6b242ca25e0f2f0166e409d64b4 100644 (file)
@@ -55,7 +55,7 @@ label {
 }
 
 .alertText[clickable="true"] {
-  color: blue;
+  color: #3333FF;
   text-decoration: underline;
 }
 
index a13f52070ce940e0c65702b032ffa91f93ad5653..9b99c12d841042e43b6d84cdbec84da2a56670a2 100644 (file)
@@ -310,7 +310,7 @@ description {
 }
 
 .text-link {
-  color: blue;
+  color: #3333FF;
   text-decoration: underline;
   cursor: pointer;
 }
index e06ce6dd9340171f0b7842576583c19c600ab038..32f56e31e6356f30be7552c8f82cba0c9ce554a2 100644 (file)
@@ -94,15 +94,18 @@ tab[disabled="true"] {
   border-radius: 0px 0px 8px 8px;
   margin-top: 0;
   margin-bottom: 2px;
-  border: 1px solid #9C9CFF;
   border-top: none;
   padding: 2px 4px 1px;
 }
 
 /* ::::: tabs-bottom ::::: */
 
+.tab-bottom:last-of-type {
+  margin-right: 0;
+}
+
 .tabs-bottom > .tabs-left,
 .tabs-bottom > .tabs-right {
-  border-top: 1px solid #9C9CFF;
+  border-top: 1px solid #008484;
   border-bottom: none;
 }
\ No newline at end of file
index d57c3d0bd4df20c5c68835f8904016dd3f0a6030..ba63f07ef242157073357ba34fdfcfb15281df9d 100644 (file)
@@ -40,12 +40,12 @@ treechildren::-moz-tree-row {
 
 treechildren::-moz-tree-row(selected) {
   background-color: #008484;
-  color: #FFCF00;
+  color: #000000;
 }
 
 treechildren::-moz-tree-row(selected, focus) {
   background-color: #008484;
-  color: #FFCF00;
+  color: #000000;
 }
 
 treechildren::-moz-tree-row(current, focus) {
index accf92e556d0ad9dd3a37731019a1bddae99a3c1..edd7913bef4d94beb7221c4d503ff43463fa8b16 100644 (file)
@@ -247,7 +247,7 @@ toolbar[iconsize="small"] > #button-abdelete:not([disabled="true"]):hover:active
 }
 
 .CardViewLink {
-  color: blue;
+  color: #3333FF;
   text-decoration: underline;
   cursor: pointer;
 }
index 1b09864395176081aba7371c99594e263464067b..cc402cf9acbea94f7ad20862208cc43c2d0c4867 100644 (file)
@@ -1047,7 +1047,7 @@ button.button-link {
   background: transparent;
   border: none;
   text-decoration: underline;
-  color: blue;
+  color: #3333FF;
   cursor: pointer;
   min-width: 0;
   margin: 0 6px;