Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings-admin.scss « css « theming « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cec0e9819949d32ab8315c6b359505ed2cd5cdb (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#theming {
    input {
        width: 230px;
    }

    input:focus,
    input:active {
        padding-right: 30px;
    }

    .fileupload {
        display: none;
    }

    div > label {
        position: relative;
    }

    .theme-undo {
        position: absolute;
        top: -7px; // input padding
        right: 4px; // input right margin + border
        cursor: pointer;
        opacity: .3;
        padding: 7px;
        vertical-align: top;
        display: inline-block;
        visibility: hidden;
        height: 32px; // height of input
        width: 32px; // height of input
    }
    form.uploadButton {
        width: 411px;
    }
    form .theme-undo,
    .theme-remove-bg {
        cursor: pointer;
        opacity: .3;
        padding: 7px;
        vertical-align: top;
        display: inline-block;
        float: right;
        position: relative;
        top: 4px;
        right: 0px;
        visibility: visible;
        height: 32px;
        width: 32px;
    }
    input[type='text']:hover + .theme-undo,
    input[type='text'] + .theme-undo:hover,
    input[type='text']:focus + .theme-undo,
    input[type='text']:active + .theme-undo,
    input[type='url']:hover + .theme-undo,
    input[type='url'] + .theme-undo:hover,
    input[type='url']:focus + .theme-undo,
    input[type='url']:active + .theme-undo{
        visibility: visible;
    }

    label span {
        display: inline-block;
        min-width: 175px;
        padding: 8px 0px;
        vertical-align: top;
    }

    .icon-upload,
    .uploadButton .icon-loading-small {
        padding: 8px 20px;
        width: 20px;
        margin: 2px 0px;
        min-height: 32px;
        display: inline-block;
    }

    #theming_settings_status {
        height: 26px;
        margin: 10px;
    }

    #theming_settings_loading {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    #theming_settings_msg {
        vertical-align: middle;
        border-radius: 3px;
    }

    #theming-preview {
        width: 230px;
        height: 140px;
        background-size: cover;
        background-position: center center;
        text-align: center;
        margin-left: 178px;
        margin-top: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        background-color: var(--color-primary);
        background-image: var(--image-background, var(--image-background-plain, url('../../../core/img/background.svg'), linear-gradient(40deg, #0082c9 0%, #30b6ff 100%)));

        #theming-preview-logo {
            cursor: pointer;
            width: 20%;
            height: 20%;
            margin-top: 20px;
            display: inline-block;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            background-image: var(--image-logo, url('../../../core/img/logo/logo.svg'));
        }
    }

    .theming-hints {
        margin-top: 20px;
    }

    .image-preview {
        display: inline-block;
        width: 80px;
        height: 36px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

	#theming-preview-logoheader {
        // Only using --image-logoheader to show the custom value only
        background-image: var(--image-logoheader);
    }

	#theming-preview-favicon {
        background-image: var(--image-favicon);
    }
}

/* transition effects for theming value changes */
#header {
    transition: background-color 500ms linear;
    svg, img {
        transition: 500ms filter linear;
    }
}