diff options
author | silverwind <me@silverwind.io> | 2023-06-27 04:45:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 02:45:24 +0000 |
commit | c71e8abbc331e2a68186aa11a4797ecd24ff6d27 (patch) | |
tree | 24488621201c7501bd6056053e9cca3de221fce1 /web_src/css/standalone/devtest.css | |
parent | 72c60f94c1a54707ebad2af0f587c08d2e8f992c (diff) | |
download | gitea-c71e8abbc331e2a68186aa11a4797ecd24ff6d27.tar.gz gitea-c71e8abbc331e2a68186aa11a4797ecd24ff6d27.zip |
Add toasts to UI (#25449)
Fixes https://github.com/go-gitea/gitea/issues/24353
In some case like async success/error, it is useful to show toasts in UI.
Diffstat (limited to 'web_src/css/standalone/devtest.css')
-rw-r--r-- | web_src/css/standalone/devtest.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web_src/css/standalone/devtest.css b/web_src/css/standalone/devtest.css new file mode 100644 index 0000000000..a7b00e1e56 --- /dev/null +++ b/web_src/css/standalone/devtest.css @@ -0,0 +1,16 @@ +.button-sample-groups { + margin: 0; padding: 0; +} + +.button-sample-groups .sample-group { + list-style: none; margin: 0; padding: 0; +} + +.button-sample-groups .sample-group .ui.button { + margin-bottom: 5px; +} + +h1, h2 { + margin: 0; + padding: 10px 0; +} |