nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
 
.featureEditor .gridTypeForm {
    line-height: 26px;
    border: 0;
    padding: 0;
}
 
/*
 * Feature Editor Grid
 */
.featureEditor {
    width: 100%;
 
    .configForm {
        width: 100% !important;
 
        .dijitButton {
            top: 18px;
            right: 15px;
            margin: 0;
            z-index: 1;
        }
        a {
            color: white;
            font-size:13px;
        }
    }
    .gridTypeForm {
        padding: 10px;
    }
 
    .dgrid-row {
        padding: 0 7px !important;
        position:relative;
 
        a {
            text-decoration: none;
            color: white;
            font-size: 13px;
        }
        .icon-gear {
            position:absolute;
            right:10px;
            top:8px;
        }
 
        .dgrid-cell {
            padding:4px;
        }
    }
 
    .dgrid-row-even:hover {
        background: lighten($sidebarRowEvenBg, 5%);
        transition: background 0.4s;
    }
 
    .dgrid-row-odd:hover {
        background: lighten($sidebarRowOddBg, 5%);
        transition: background 0.4s;
    }
 
    .field-selected {
        width: 30px;
    }
}