summaryrefslogtreecommitdiffstats
path: root/includes/css
diff options
context:
space:
mode:
authorAndreaChirulescu <andrea.chirulescu@gmail.com>2021-04-05 22:04:21 +0200
committerAndreaChirulescu <andrea.chirulescu@gmail.com>2021-04-05 22:04:21 +0200
commit01189b0c2f9ae31de0702e87bd4c1cb30266a6c2 (patch)
tree60aada88884ba2073915a43436062f3c9bfbdf80 /includes/css
parent65d1dcfb5ce005f7806b1c8d3e2ffbd52ffe4318 (diff)
downloadgigologadmin-01189b0c2f9ae31de0702e87bd4c1cb30266a6c2.tar.gz
gigologadmin-01189b0c2f9ae31de0702e87bd4c1cb30266a6c2.tar.bz2
gigologadmin-01189b0c2f9ae31de0702e87bd4c1cb30266a6c2.zip
Added CSS for giglog admin page and some small adjustments in Taken bybehavior
Diffstat (limited to 'includes/css')
-rw-r--r--includes/css/main.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/includes/css/main.css b/includes/css/main.css
new file mode 100644
index 0000000..5df024a
--- /dev/null
+++ b/includes/css/main.css
@@ -0,0 +1,55 @@
+div.takenby {
+ background-color: #FFFFE0;
+ padding: 20px;
+ display: none;
+}
+
+span.takenby:hover + div.takenby {
+ display: block;
+}
+
+span.takenby
+{
+ color:red;
+}
+
+.assignit input
+{
+ background:red;
+ font-size: small;
+ padding: none;
+ background: url('http://andreutza.biz/wordpress/wp-content/uploads/2021/01/checkedbox.png') no-repeat;
+ background-size: 20px 20px;
+ vertical-align: center;
+}
+.assignit
+{
+ padding: none !important;
+ font-size: small;
+ vertical-align: center;
+}
+
+.unassignit input
+{
+ background:red;
+ font-size: small;
+ padding: none;
+ background: url('http://andreutza.biz/wordpress/wp-content/uploads/2021/01/redicon.png') no-repeat;
+ background-size: 20px 20px;
+ vertical-align: center;
+}
+.adminbuttons form
+{
+ display: flex; /* 2. display flex to the rescue */
+ flex-direction: row;
+}
+.adminbuttons input
+{ width: 80px;
+ background-image: none !important;
+ display: block;alignment-baseline
+}
+.adminbuttons
+{
+ padding: unset;
+ width: 80px;
+} \ No newline at end of file