about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/ModalWindow.razor.css
diff options
context:
space:
mode:
authorEmma@Rory& <root@rory.gay>2023-09-15 09:55:36 +0200
committerEmma@Rory& <root@rory.gay>2023-09-15 09:55:36 +0200
commite10fa389ce3c4d42deadfec8bf08c2fbb1a88d79 (patch)
tree1e2f8d8de07c6037ac4aa20be3b54ac43c2d7f2e /MatrixRoomUtils.Web/Shared/ModalWindow.razor.css
parentCode cleanup (diff)
downloadMatrixUtils-e10fa389ce3c4d42deadfec8bf08c2fbb1a88d79.tar.xz
Refactors
Diffstat (limited to 'MatrixRoomUtils.Web/Shared/ModalWindow.razor.css')
-rw-r--r--MatrixRoomUtils.Web/Shared/ModalWindow.razor.css70
1 files changed, 0 insertions, 70 deletions
diff --git a/MatrixRoomUtils.Web/Shared/ModalWindow.razor.css b/MatrixRoomUtils.Web/Shared/ModalWindow.razor.css
deleted file mode 100644
index 6d08114..0000000
--- a/MatrixRoomUtils.Web/Shared/ModalWindow.razor.css
+++ /dev/null
@@ -1,70 +0,0 @@
-.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;
-}