Skip to content
Snippets Groups Projects
Unverified Commit a1909c72 authored by Gabriel Engel's avatar Gabriel Engel
Browse files

simplifying css

parent ffdaecee
No related branches found
No related tags found
No related merge requests found
...@@ -541,12 +541,6 @@ textarea[disabled] { ...@@ -541,12 +541,6 @@ textarea[disabled] {
} }
.form-group { .form-group {
.-btn {
margin-left: 2px;
&:nth-child(1) {
margin-left: 3px;
}
}
.input-group { .input-group {
padding: 2px 0; padding: 2px 0;
} }
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
@pending-color: #fcb316; @pending-color: #fcb316;
@component-color: @input-font-color; @component-color: @input-font-color;
@selection-color: @info-active-font-color; @selection-color: @info-active-font-color;
@primary-background-contrast: contrast(@primary-background-color, #444); @primary-background-contrast: contrast(@primary-background-color, #444);
@primary-action-contrast: contrast(@primary-action-color, #444); @primary-action-contrast: contrast(@primary-action-color, #444);
@secondary-action-contrast: contrast(@secondary-action-color, #444); @secondary-action-contrast: contrast(@secondary-action-color, #444);
...@@ -231,28 +230,13 @@ label.required:after { ...@@ -231,28 +230,13 @@ label.required:after {
// new layout buttons // new layout buttons
.button { .button {
.buttonColors(@secondary-action-contrast, @secondary-action-color); .buttonColors(@secondary-action-contrast, @secondary-action-color);
&.button-primary, &.primary {
&.primary,
&.save,
&.send,
&.start {
.buttonColors(@primary-action-contrast, @primary-action-color); .buttonColors(@primary-action-contrast, @primary-action-color);
} }
// TODO: Secondary button usage needs refactor and guidelines to be consistent &.secondary {
// &.back, .buttonColors(@secondary-action-contrast, @secondary-action-color);
// &.cancel, }
// &.secondary { &.danger {
// .buttonColors(@secondary-action-contrast,@secondary-action-color);
// }
&.danger,
&.delete,
&.delete-role,
&.end,
&.logout,
&.mute-user,
&.remove,
&.remove-user,
&.stop-call {
.buttonColors(@error-contrast, @error-color); .buttonColors(@error-contrast, @error-color);
} }
&.external-login { &.external-login {
...@@ -1254,10 +1238,6 @@ a.github-fork { ...@@ -1254,10 +1238,6 @@ a.github-fork {
color: white; color: white;
} }
.green {
color: green;
}
.flex-tab-bar { .flex-tab-bar {
background: #FCFCFC; background: #FCFCFC;
.tab-button { .tab-button {
......
<template name="cmsPage"> <template name="cmsPage">
<div class="cms-page"> <div class="cms-page">
<div class="cms-page-close"> <div class="cms-page-close">
<a href="/login" class="button button-primary"><i class="icon-cancel"></i></a> <a href="/login" class="button primary"><i class="icon-cancel"></i></a>
</div> </div>
{{{page}}} {{{page}}}
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment