remove title move cursor
[newtab.git] / style.css
index 409724a27b5a42829def86f228a4236a90caecbc..3e566468a383d625e72a8736b64f82c45b9d72a6 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,3 +1,12 @@
+:root {
+  --hover-bg: #434c5e;
+  --hover-grn: #a3be8c;
+  --hover-bg-2: #848ead;
+  --remove-bg: #bf616a;
+  --default-fg: #d8dee9;
+  --default-bg: #2e3440;
+}
+  
 html, body {
   font-size: 16px !important;
   width: 100%;
@@ -6,14 +15,14 @@ html, body {
 
 body {
   margin: 0;
-  color: #D8DEE9;
+  color: var(--default-fg);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
 }
 
-.favorites {
+#links {
   display: flex;
   flex-direction: row;
   display: -webkit-flex;
@@ -21,10 +30,12 @@ body {
 }
 
 ul {
+  position: relative;
   list-style: none;
   padding: 0;
   width: 10rem;
   margin: 0.5rem 2em 2em 2em;
+  float: left;
 }
 
 img {
@@ -49,14 +60,21 @@ input.url {
   margin-top: 2.5px
 }
 
+input.colname {
+  width: calc(100% - 68px);
+  height: 19px;
+  margin: 14px 0 6px 0;
+  border: 2px var(--hover-bg) dashed;
+  background-color: var(--default-bg);
+  color: inherit;
+  font-family: inherit;
+}
+
 .remove {
-/*  width: 9px;
-  height: 29px;
-  padding: 6px 10px 0 10px;*/
   width: 29px;
   height: 35px;
   padding: 0;
-  background: #434C5E;
+  background-color: var(--hover-bg);
   float: right;
   text-align: center;
   justify-content: center;
@@ -75,18 +93,47 @@ input.url {
   text-align: center;
   align-items: center;
   cursor: pointer;
+  background-color: var(--hover-bg-2);
 }
 
 .save:hover, .save:focus, .save:focus-within {
-  background: #A3BE8C;
+  background-color: var(--hover-grn);
 }
 
 .remove:hover {
-  background: #BF616A;
+  background-color: var(--remove-bg);
+}
+
+#edit, #addcol {
+  position: absolute;
+  right: 0;
+  bottom: 0;
+  background-color: var(--hover-bg);
+  width: 29px;
+  height: 29px;
+  padding: 0;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  cursor: pointer;
+  font-weight: bold;
+}
+
+#edit:hover {
+  background-color: var(--hover-bg-2);
+}
+
+#addcol {
+  display: none;
+  right: 29px;
+}
+
+#addcol:hover {
+  background-color: var(--hover-grn);
 }
 
-.add {
-  background-color: #434C5E;
+.add, .rmcol {
+  background-color: var(--hover-bg);
   margin-top: 14px;
   width: 29px;
   height: 29px;
@@ -99,7 +146,19 @@ input.url {
 }
 
 .add:hover {
-  background-color: #A3BE8C !important;
+  background-color: var(--hover-grn) !important;
+}
+
+.rmcol {
+  display: flex;
+}
+
+.rmcol:hover {
+  background-color: var(--remove-bg) !important;
+}
+
+.new {
+  background-color: var(--hover-bg);
 }
 
 .title:hover > .add {
@@ -109,16 +168,16 @@ input.url {
 .title:hover .add:not(:hover),
 li:hover > .remove:not(:hover) {
   display: flex;
-  background-color: #434c5e;
+  background-color: var(--hover-bg);
 }
 
 li:hover > a, li > a:focus, li > a:focus-within {
   display: inline-block;
-  background-color: #434c5e;
+  background-color: var(--hover-bg);
 }
 
 li:hover {
-  background-color: #434c5e;
+  background-color: var(--hover-bg);
 }
 
 a {
@@ -134,25 +193,55 @@ a {
   display: none;
 }
 
-a, ul > .title > p {
+a, ul > .title > p, .colname {
   width: calc(100% - 45px);
   display: inline-block;
 }
 
-li.sortable-chosen.sortable-ghost > a {
-  background-color: white;
-  color: #2A313B !important;
+li.sortable-chosen.sortable-ghost {
+  background-color: var(--hover-bg-2);
+}
+
+.over {
+ /* border: 2px dashed var(--default-fg);*/
+}
+
+span.grip {
+  content: '....';
+  position: relative;
+  right: 20px;
+  top: 35px;
+  width: 10px;
+  height: 20px;
+  display: none;
+  overflow: hidden;
+  line-height: 5px;
+  padding: 3px 4px;
+  cursor: move;
+  vertical-align: middle;
+  font-size: 12px;
+  font-family: sans-serif;
+  font-weight: bold;
+  letter-spacing: 2px;
+}
+
+span.grip::after {
+  content: '.. .. .. ..';
+}
+
+.glyphicon-move {
+  cursor: move;
+  cursor: -webkit-grabbing;
 }
 
 .title {
   margin-bottom: 0.5rem;
   font-weight: bold;
   text-align: left;
-  border-bottom: 1px solid #434C5E;
+  border-bottom: 1px solid var(--hover-bg);
 }
 
 .title p {
   width: 160px;
-  margin-left: 0.5rem;
-  margin-bottom: 0.5rem !important;
+  margin: 16px 0 8px 0;
 }