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:02:09 +0300
committerGitHub <noreply@github.com>2020-01-15 00:02:09 +0300
commit8dd807b68c5812441d5e5e57cc366d2ef8f068d1 (patch)
tree78573f4fe028948335a8b11420e5572ab3affcf3 /css
parentdc4ea8631eea2d34af15c1a5492e01b546ea37b7 (diff)
parent02c35b1cc7cfa9973940075e27e41d174646e9ac (diff)
Merge pull request #2732 from nextcloud/bugfix/2688/add-ability-to-password-protect-conversations
Password protect group conversations
Diffstat (limited to 'css')
-rw-r--r--css/authenticate.css53
1 files changed, 0 insertions, 53 deletions
diff --git a/css/authenticate.css b/css/authenticate.css
deleted file mode 100644
index 781d9ea03..000000000
--- a/css/authenticate.css
+++ /dev/null
@@ -1,53 +0,0 @@
-form fieldset {
- display: flex !important;
- flex-direction: column;
-}
-
-#password {
- margin-right: 0 !important;
- height: 45px;
- box-sizing: border-box;
- flex: 1 1 auto;
- width: 100% !important;
- min-width: 0; /* FF hack for to override default value */
-
- /* The padding needs to be set here instead of for "input[type="password"]"
- * elements to prevent being overriden by a more specific rule in the
- * server. */
- padding-right: 44px;
-}
-
-input[type="password"]:focus + .icon-confirm:not(:disabled) {
- opacity: .6;
-}
-
-input[type="password"] + .icon-confirm {
- position: absolute;
- right: 15px;
-
- /* Needed to honour the height set below for "input[type='submit']" by
- * overriding a rule set in the server. */
- height: 45px;
-
- border: none;
- /* Needed to override an important rule set in the server. */
- background-color: transparent !important;
-
- opacity: .3;
-}
-
-input[type="password"] + .icon-confirm:hover:not(:disabled),
-input[type="password"] + .icon-confirm:focus:not(:disabled),
-input[type="password"] + .icon-confirm:active:not(:disabled) {
- opacity: 1;
-}
-
-input[type='submit'] {
- width: 45px;
- height: 45px;
- margin-left: 0 !important;
-}
-
-fieldset > p {
- display: inline-flex;
-}