aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css
diff options
context:
space:
mode:
authorOfir Sonsino <os0695@att.com>2018-01-31 17:19:00 +0200
committerOfir Sonsino <os0695@att.com>2018-01-31 17:19:00 +0200
commit1cfb08779ea0e00be69e072a940b3063e049fe6b (patch)
tree6602a900387c8393ed0dcd81c0539381632903c6 /vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css
parent2f20b001b9243e0f8b44aecc768ec265fd538732 (diff)
org.onap migration
Change-Id: I52f0b2851f2c765752b6d21f49b32136d7d72a3d Issue-ID: VID-86 Signed-off-by: Ofir Sonsino <os0695@att.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css')
-rw-r--r--vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css67
1 files changed, 66 insertions, 1 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css b/vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css
index 8c4dbd8c..7e9620a3 100644
--- a/vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css
+++ b/vid-app-common/src/main/webapp/app/vid/styles/change-management-icons.css
@@ -51,8 +51,13 @@
color: #5a5a5a;
}
.icon-pending:before {
+ content: "\e905";
+ color: #00aeef;
+ cursor: pointer;
+ }
+.icon-deleted:before {
content: "\e905";
- color: #00aeef;
+ color: #cf2a2a;
cursor: pointer;
}
.icon-plus:before {
@@ -80,3 +85,63 @@
font-size: 12px;
cursor: pointer;
}
+.icon-search-in:before {
+ content: "\e90d";
+ color: #009FDB;
+ font-size: 17px;
+ cursor: pointer;
+}
+.expand-icon{
+ margin-right: 10px;
+ position: relative;
+ width: 11px;
+ height: 11px;
+ display: inline-block;
+ cursor: pointer;
+}
+
+/* Vertical line */
+.expand-icon:before{
+ content: "";
+ position: absolute;
+ background-color: #5a5a5a;
+ transition: transform 0.25s ease-out;
+ right: 40%;
+ width: 2px;
+ height: 100%;
+ margin-left: 5px;
+}
+
+/* horizontal line */
+.expand-icon:after{
+ content: "";
+ position: absolute;
+ background-color: #5a5a5a;
+ transition: transform 0.25s ease-out;
+ top: 40%;
+ left: 0;
+ width: 100%;
+ height: 2px;
+}
+.collapse-icon{
+ margin-right: 10px;
+ cursor: pointer;
+ display: inline-block;
+ width: 10px;
+ border-top: 1.6px solid #5a5a5a;
+ padding: 2.6px;
+}
+.icon-search2:before {
+ content: "\e90d";
+ color: #009FDB;
+ font-size: 40px;
+ cursor: pointer;
+}
+.icon-sync:before {
+ content: "\e90f";
+ font-size: 20px;
+ cursor: pointer;
+}
+.icon-sync:hover:before {
+ color: #009FDB;
+}