Commit b03df175 authored by Phil Hughes's avatar Phil Hughes

Moved scss values into variables

Fixed heading weight
parent be390cff
...@@ -101,6 +101,11 @@ $border-red-dark: #CA264F; ...@@ -101,6 +101,11 @@ $border-red-dark: #CA264F;
$help-well-bg: #FAFAFA; $help-well-bg: #FAFAFA;
$help-well-border: #E5E5E5; $help-well-border: #E5E5E5;
$settings-message-bg: #FBF2D9;
$settings-message-color: #9E8E60;
$settings-message-border: #F0E2BB;
$settings-message-radius: 3px;
/* header */ /* header */
$light-grey-header: #faf9f9; $light-grey-header: #faf9f9;
......
...@@ -178,10 +178,10 @@ ...@@ -178,10 +178,10 @@
.profile-settings-message { .profile-settings-message {
line-height: 32px; line-height: 32px;
color: #9E8E60; color: $settings-message-color;
background-color: #FBF2D9; background-color: $settings-message-bg;
border: 1px solid #F0E2BB; border: 1px solid $settings-message-border;
border-radius: 3px; border-radius: $settings-message-radius;
} }
.oauth-applications { .oauth-applications {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
Manage applications that you've authorized to use your account. Manage applications that you've authorized to use your account.
.col-lg-9 .col-lg-9
- if user_oauth_applications? - if user_oauth_applications?
%h5 %h5.prepend-top-0
Add new application Add new application
= render 'doorkeeper/applications/form', application: @application = render 'doorkeeper/applications/form', application: @application
%hr %hr
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
Your applications (#{@applications.size}) Your applications (#{@applications.size})
- if @applications.any? - if @applications.any?
.table-responsive .table-responsive
%table.table.table-striped %table.table
%thead %thead
%tr %tr
%th Name %th Name
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
- else - else
.profile-settings-message.text-center .profile-settings-message.text-center
You don't have any applications You don't have any applications
.oauth-authorized-applications.prepend-top-20 .oauth-authorized-applications.prepend-top-20.append-bottom-default
- if user_oauth_applications? - if user_oauth_applications?
%h5 %h5
Authorized applications (#{@authorized_tokens.size}) Authorized applications (#{@authorized_tokens.size})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment