1#plugin_dropfiles_uploadwidget {
2
3    .dropfiles_file_upload_bar {
4        display: flex;
5        justify-content: space-between;
6        align-items: center;
7        margin-bottom: 5px;
8
9        .filename {
10            width: 50%;
11        }
12
13        .progressbar {
14            width: 45%;
15
16            .ui-progressbar-value {
17                background: #cccccc;
18            }
19        }
20    }
21}
22
23.dropfiles.ui-dialog {
24    font-size: 1.32rem;
25
26    form {
27        display: flex;
28        align-items: center;
29
30        input[name="filename"] {
31            flex-grow: 1;
32        }
33    }
34
35}
36