summaryrefslogtreecommitdiff
path: root/Pages/Component/AclDialog.razor.css
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-10-04 15:59:52 +1100
committerJake Mannens <jake@asger.xyz>2023-10-04 15:59:52 +1100
commitaa0b68f7648bd5a7c14b64737a4f8d3e402bfce5 (patch)
treef058842f77cfbd6e2a21abd3e4f8ad4f8ad1ed9a /Pages/Component/AclDialog.razor.css
parent33438ac951430fa370965b42a3d98a54e704ab01 (diff)
Fix SID equality and WellKnownSid mappings
Diffstat (limited to 'Pages/Component/AclDialog.razor.css')
-rw-r--r--Pages/Component/AclDialog.razor.css30
1 files changed, 29 insertions, 1 deletions
diff --git a/Pages/Component/AclDialog.razor.css b/Pages/Component/AclDialog.razor.css
index f1b7931..b98cc6d 100644
--- a/Pages/Component/AclDialog.razor.css
+++ b/Pages/Component/AclDialog.razor.css
@@ -1,4 +1,28 @@
-table p {
+div.container {
+ display: flex;
+ flex-direction: row;
+}
+
+div.container > div {
+ width: 50%;
+}
+
+div.container > div:first-child {
+ border-right: 1px solid white;
+ padding-right: 15px;
+}
+
+div.container > div:last-child {
+ padding-left: 15px;
+ height: stretch;
+}
+
+div.container > div:last-child p {
+ vertical-align: middle;
+ text-align: center;
+}
+
+table p {
margin: 8px 0 8px 0;
}
@@ -17,6 +41,10 @@ table td:last-child {
font-size: 12pt;
}
+table td:nth-last-child(2) {
+ border-right: none !important;
+}
+
table tr:nth-child(2n+1) td:not(:first-child) {
background: rgba(255, 255, 255, 0.1);
}