summaryrefslogtreecommitdiffstats
path: root/catalog-ui/app/scripts/view-models/admin-dashboard/category-management/category-management.less
blob: 011122c9e897c8b55a3e85dc1bc69c585550b3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.category-management {

    .row {
        display: table;
        width: 70%;
        min-width: 800px;
        margin: auto;

        [class*="col-"] {
            float: none;
            display: table-cell;
            vertical-align: top;
            background-color: white;
            border: 1px solid #c1c1c1;
            padding: 0;

            &:not(:last-child) {
                border-right: none;
            }

            h4 {
                float:left;
                color:white;
                background-color: rgb(155,168,176);
                margin: 0;
                padding: 0px 0px 0px 16px;
                width: 100%;
                height: 31px;
                font-size: 15px;

                span{
                    display: inline-block;
                    line-height: 30px;
                    margin-right: 5px;
                    padding: 0 7px;

                    &.selected {
                        border-bottom: 2px #067ab4 solid;
                    }
                }
            }
            h4+span{
                .hand;
                float:right;
                display: inline-block;
                background-color: rgb(59,124,156);
                text-align: center;
                padding: 5.5px 0px;
                width: 60px;
                color: white;
                position: absolute;
                top: 0;
                right: 0;
                z-index: 1;
                color: white;
            }


            .perfect-scrollbar {
                width: 100%;
                height: 500px;
                margin-top: 40px;
                margin-bottom: 15px;
            }

            ul {
                clear: both;
                margin: 5px 0 10px 0;
                list-style-type: none;
                padding: 0;
                position: relative;

                li{
                    .hand;
                    padding: 0 8px;
                    text-indent: 9px;
                    font-size: 13px;
                    line-height: 25px;
                    border: 1px solid white;
                    border-right: none;
                    border-left: none;
                    margin-right: 5px;

                    button {
                        background-color: transparent;
                        border: none;
                        float: right;
                        margin: 5px 3px;
                        display: none;
                    }

                    &:hover {
                        background-color: #d9e6ec;
                        color: #3b7b9b;
                        border-color: #d9e6ec;

                        button {
                            display: inline-block;
                        }
                    }
                    &.selected {
                        background-color: rgb(219,230,236);
                        color: #3b7b9b;
                        border-color: rgba(59, 123, 155, 0.42);

                        &.gray {
                            background-color:  rgba(155, 168, 176, 0.09);
                            border-color: white;
                        }
                    }

                }
            }
        }
    }

}