aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/PropertiesView.scss
blob: 98eae1ac7242434ee601935c09ece4e8f436236f (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
.propertiesView {

    background-color: rgb(205, 205, 205);
    height: 100%;
    z-index: 1;
    font-family: "Noto Sans";
    cursor: auto;

    //overflow-y: scroll;

    .propertiesView-title {
        background-color: rgb(159, 159, 159);
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .propertiesView-name {
        border-bottom: 1px solid black;
        padding: 8.5px;
        font-size: 12.5px;
    }

    .propertiesView-settings {
        border-bottom: 1px solid black;
        padding: 8.5px;
        font-size: 12.5px;
        font-weight: bold;

        .propertiesView-settings-title {
            font-weight: bold;
            font-size: 12.5px;
            padding-bottom: 7px;
        }

        .propertiesView-settings-content {
            margin-left: 5px;
            padding-bottom: 10px;
        }

    }

    .propertiesView-fields {
        border-bottom: 1px solid black;
        padding: 8.5px;

        .propertiesView-fields-title {
            font-size: 12.5px;
            font-weight: bold;
            padding-bottom: 7px;
        }

        .propertiesView-fields-content {
            font-size: 10px;
            margin-left: 5px;

            &:hover {
                cursor: pointer;
            }
        }
    }

    .propertiesView-layout {
        padding: 8.5px;

        .propertiesView-layout-title {
            font-weight: bold;
            font-size: 12.5px;
            padding-bottom: 7px;
        }

        .propertiesView-layout-content {
            margin-left: 5px;
            overflow: hidden;
        }

    }
}