summaryrefslogtreecommitdiffstats
path: root/includes/css
diff options
context:
space:
mode:
authorAndreaChirulescu <andrea.chirulescu@gmail.com>2021-04-07 22:32:44 +0200
committerAndreaChirulescu <andrea.chirulescu@gmail.com>2021-04-07 22:32:44 +0200
commit1961ab720d8fcf7f13634b5beef88d5dd46bfb42 (patch)
treefd3e05cdd6f0c1550958898e1c785b5a9404e1f5 /includes/css
parent6fb98b6f0f7cd077b52ec8e4f0eb9fbd72eed34d (diff)
downloadgigologadmin-1961ab720d8fcf7f13634b5beef88d5dd46bfb42.tar.gz
gigologadmin-1961ab720d8fcf7f13634b5beef88d5dd46bfb42.tar.bz2
gigologadmin-1961ab720d8fcf7f13634b5beef88d5dd46bfb42.zip
Forgot 2 returns in taken by for Reviewer 1 and 2
Improved the css for assigned/unassigned
Diffstat (limited to 'includes/css')
-rw-r--r--includes/css/main.css49
1 files changed, 41 insertions, 8 deletions
diff --git a/includes/css/main.css b/includes/css/main.css
index af50cfd..bf2ca4a 100644
--- a/includes/css/main.css
+++ b/includes/css/main.css
@@ -13,16 +13,32 @@ span.takenby
color:red;
}
-.assignit input
+input[name="assignitem"]
{
- background:red;
+
+ background: transparent;
+
+ border: none;
+
font-size: small;
+
padding: none;
- background: url('/wp-content/plugins/giglogadmin/assets/images/checkedbox.png') no-repeat;
- background-size: 20px 20px;
+
+ background-image: url('/wp-content/plugins/giglogadmin/assets/images/checkedbox.png');
+
+ background-repeat: no-repeat;
+
+ background-size: 15px 15px;
+
+ width: 20px;
+
+ height: 20px;
+
vertical-align: center;
+
}
+
.assignit
{
padding: none !important;
@@ -37,15 +53,32 @@ table.assignit
overflow: hidden;
}
-.unassignit input
+input[name="unassignitem"]
+
{
- background:red;
+
+ background: transparent;
+
+ border: none;
+
font-size: small;
+
padding: none;
- background: url('/wp-content/plugins/giglogadmin/assets/images/redicon.png') no-repeat;
- background-size: 20px 20px;
+
+ background-image: url('/wp-content/plugins/giglogadmin/assets/images/redicon.png');
+
+ background-repeat: no-repeat;
+
+ background-size: 15px 15px;
+
+ width: 20px;
+
+ height: 20px;
+
vertical-align: center;
+
}
+
.adminbuttons form
{
display: flex; /* 2. display flex to the rescue */