about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/ModalWindow.razor.css
blob: 6d081142d29ba35cdcb79636cbc8cae7037ee80a (plain) (blame)
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
.r-modal {
    position: absolute;
    width: fit-content;
    height: fit-content;
    z-index: 1000;
}
.r-modal:hover {
    z-index: 1001;
}

.r-modal > .titlebar {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #000;
    user-select: none;
}

.r-modal > .titlebar > .title {
    position: relative;
    top: 0;
    left: 0;
    width: fit-content;
    text-wrap: nowrap;
    height: 100%;
    line-height: 25px;
    padding-left: 10px;
    color: #fff;
}

.r-modal > .titlebar > .btnclose {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    line-height: 25px;
    text-align: center;
    color: #fff;
    background-color: #111;
    cursor: pointer;
}
.r-modal > .titlebar > .btncollapse {
    position: absolute;
    top: 0;
    right: 25px;
    width: 25px;
    height: 100%;
    line-height: 25px;
    text-align: center;
    color: #fff;
    background-color: #111;
    cursor: pointer;
}

.r-modal > .r-modal-content {
    position: relative;
    top: 25px;
    left: 0;
    width: fit-content;
    height: fit-content;
    min-width: 150px;
    max-width: 75vw;
    max-height: 75vh;
    overflow: auto;
    background-color: #111;
}