summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-08-23 19:06:17 -0300
committerJoram Wilander <jwawilander@gmail.com>2016-08-23 18:06:17 -0400
commit9ab5a7996247c98ed6267b638e1b313e7c4eb8ff (patch)
tree95579883cd48370ee48259b2bec02b124df2f200 /webapp/sass/routes
parente406a92fbbfe36765ab66d9879a9c94546c7c281 (diff)
downloadchat-9ab5a7996247c98ed6267b638e1b313e7c4eb8ff.tar.gz
chat-9ab5a7996247c98ed6267b638e1b313e7c4eb8ff.tar.bz2
chat-9ab5a7996247c98ed6267b638e1b313e7c4eb8ff.zip
PLT-3745 - Deauthorize OAuth Apps (#3852)
* Deauthorize OAuth APIs * Deautorize OAuth Apps Account Settings * Fix typo in client method * Fix issues found by PM * Show help text only when there is at least one authorized app
Diffstat (limited to 'webapp/sass/routes')
-rw-r--r--webapp/sass/routes/_settings.scss36
1 files changed, 36 insertions, 0 deletions
diff --git a/webapp/sass/routes/_settings.scss b/webapp/sass/routes/_settings.scss
index 36a1acf76..6fa8c26a7 100644
--- a/webapp/sass/routes/_settings.scss
+++ b/webapp/sass/routes/_settings.scss
@@ -7,6 +7,42 @@
max-height: 300px;
max-width: 560px;
}
+
+ .authorized-apps__help {
+ font-size: 13px;
+ font-weight: 400;
+ margin-top: 7px;
+ }
+
+ .authorized-apps__wrapper {
+ background-color: #fff;
+ padding: 10px 0;
+ }
+
+ .authorized-app {
+ display: inline-block;
+ width: 100%;
+
+ &:not(:last-child) {
+ border-bottom: 1px solid #ccc;
+ margin-bottom: 10px;
+ }
+
+ .authorized-app__name {
+ font-weight: 600;
+ }
+
+ .authorized-app__url {
+ font-size: 13px;
+ font-weight: 400;
+ }
+
+ .authorized-app__description,
+ .authorized-app__deauthorize {
+ font-size: 13px;
+ margin: 5px 0;
+ }
+ }
}
.modal {