Browse Source

Merge branch 'theming'

Florian DORMONT 11 years ago
parent
commit
94ccff2b27
3 changed files with 80 additions and 2 deletions
  1. 1 1
      app/www/css/style.css
  2. 2 1
      app/www/index.html
  3. 77 0
      app/www/themes/omnom.css

+ 1 - 1
app/www/css/style.css

@@ -171,11 +171,11 @@ html,body{
 }
 #tabs-list div.tab{
 	float: left;
-	min-width: 100px;
 	max-width: 200px;
 	height: 19px;
 	overflow: hidden;
 	position: relative;
+
 }
 #tabs-list div.tab.clicked{
 	background-color: lightgrey;

+ 2 - 1
app/www/index.html

@@ -15,7 +15,8 @@
 		<script type="text/javascript" src="js/omnomirc.js"></script>
 		<link rel="stylesheet" href="css/style.css"></link>
 		<link rel="stylesheet" href="css/jquery.contextMenu.css"></link>
-	</head>
+		<link rel="stylesheet" href="themes/omnom.css"></link>
+</head>
 	<body>
 		<div id="head">
 			<div id="info">

+ 77 - 0
app/www/themes/omnom.css

@@ -0,0 +1,77 @@
+/*
+    Omnimaga Theme
+    Default theme with a blue lobster taste included
+    @author Eiyeron Fulmicendii
+    @email  [email protected]
+*/
+
+#head {
+    font-size: 10px;
+    font-family:verdana,sans-serif;
+    background-color: #DFEFFF;
+}
+
+/* Tab theming*/
+
+
+/* Setting tabs */
+#tabs-list div.tab, #tabs-scroll-right,#tabs-scroll-left {
+    display: block;
+    -webkit-box-align: center;
+    -moz-box-align: center;
+    box-align: center;
+    text-align: center;
+    vertical-align: center;
+    line-height: 16px;
+    background-color: #DFEFFF;
+    border: 1px solid rgba(102, 153, 255, 0.3);
+    border-top-color: rgba(102, 153, 255, 0.6);
+    border-bottom: none;
+}
+
+/* Setting margin for close button */ 
+#tabs-list div.tab {
+    padding-right: 15px;
+}
+
+/* Setting close button */
+#tabs-list .close-button {
+    line-height: 18px;
+    margin-top: 0;
+    display: block;
+    float: left;
+}
+
+/* border effect when hovering */
+#tabs-list div.tab:hover, #tabs-scroll-right:hover,#tabs-scroll-left:hover {
+    background-color: #cae4ff;
+    border-bottom-color: #cae4ff;
+}
+
+/* Selected tab setting */
+#tabs-list div.tab.clicked{
+    background-color: #cae4ff;
+    border: solid 1px #6699ff;
+}
+
+/* Disabled scroll setting */
+#tabs-scroll-left.disabled, #tabs-scroll-right.disabled{
+    background-color: #cae4ff;
+    border: solid 1px #6699ff;
+}
+
+
+/* Log theming*/
+/* Log container */
+#content {
+    font-size: 10px;
+    font-family:verdana,sans-serif;
+    line-height:13px;
+    background-color: #DFEFFF;
+}
+
+/* Log line theming */
+
+#content-list li:nth-child(even) {
+    background-color: #cae4ff;
+}