Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-01-15 00:10:32 +0300
committerGitHub <noreply@github.com>2020-01-15 00:10:32 +0300
commit2079a6560ba7cdcc1b37690037e2b056d2717eda (patch)
tree9574d00e211746c79c71bf8fd664b412fa9981ba /css
parent0ff3a2509539c58ae8625989950c07ad77d34f45 (diff)
parent018be5f8cf8f5635af4e93bdf5ce94cf64e43032 (diff)
Merge pull request #2744 from nextcloud/bugfix/noid/remove-unused-css
Remove more unused css
Diffstat (limited to 'css')
-rw-r--r--css/autocomplete.scss77
1 files changed, 0 insertions, 77 deletions
diff --git a/css/autocomplete.scss b/css/autocomplete.scss
deleted file mode 100644
index 0837b3878..000000000
--- a/css/autocomplete.scss
+++ /dev/null
@@ -1,77 +0,0 @@
-/**
- * based upon apps/comments/js/vendor/At.js/dist/css/jquery.atwho.css,
- * only changed colors and font-weight
- */
-
-.atwho-view {
- position:absolute;
- top: 0;
- left: 0;
- display: none;
- margin-top: 18px;
- background: var(--color-main-background);
- color: var(--color-main-text);
- border: 1px solid var(--color-border);
- border-radius: var(--border-radius);
- box-shadow: 0 0 5px var(--color-box-shadow);
- min-width: 120px;
- z-index: 11110 !important;
-}
-
-.atwho-view .atwho-header {
- padding: 5px;
- margin: 5px;
- cursor: pointer;
- border-bottom: solid 1px var(--color-border);
- color: var(--color-main-text);
- font-size: 11px;
- font-weight: bold;
-}
-
-.atwho-view .atwho-header .small {
- color: var(--color-main-text);
- float: right;
- padding-top: 2px;
- margin-right: -5px;
- font-size: 12px;
- font-weight: normal;
-}
-
-.atwho-view .atwho-header:hover {
- cursor: default;
-}
-
-.atwho-view .cur {
- background: var(--color-primary);
- color: var(--color-primary-text);
-}
-.atwho-view .cur small {
- color: var(--color-primary-text);
-}
-.atwho-view strong {
- color: var(--color-main-text);
- font-weight: normal;
-}
-.atwho-view .cur strong {
- color: var(--color-primary-text);
- font-weight: normal;
-}
-.atwho-view ul {
- /* width: 100px; */
- list-style:none;
- padding:0;
- margin:auto;
- max-height: 200px;
- overflow-y: auto;
-}
-.atwho-view ul li {
- display: block;
- padding: 5px 10px;
- border-bottom: 1px solid var(--color-border);
- cursor: pointer;
-}
-.atwho-view small {
- font-size: smaller;
- color: var(--color-main-text);
- font-weight: normal;
-}