1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00
This commit is contained in:
Harvey Kandola 2017-03-08 14:47:16 +00:00
parent 8833cd57c3
commit 5c8db2a873
4 changed files with 13 additions and 5 deletions

View file

@ -35,7 +35,7 @@ export default Ember.Component.extend(TooltipMixin, NotifierMixin, {
init() {
this._super(...arguments);
if (is.empty(this.get('tab'))) {
if (is.empty(this.get('tab')) || is.undefined(this.get('tab'))) {
this.set('tab', 'index');
}
},

View file

@ -30,7 +30,6 @@
overflow-x: hidden;
list-style-type: none;
margin: 20px 0 0;
font-family: $font-semibold;
.item {
padding: 4px 0;
@ -40,7 +39,7 @@
overflow: hidden;
> .link {
color: $color-gray;
color: $color-off-black;
&:hover {
color: $color-link;

View file

@ -24,6 +24,13 @@
line-height: 20px;
}
ol {
li {
list-style-type: decimal;
line-height: 20px;
}
}
ul {
li {
list-style-type: disc;

View file

@ -15,8 +15,8 @@
}
> .tip {
color: $color-input;
font-size: 1em;
color: $color-gray;
font-size: 0.9em;
margin: 5px 0 10px;
padding: 0;
text-align: left;
@ -168,6 +168,8 @@
}
.input-transparent {
background-color: transparent !important;
> input, textarea {
background-color: transparent !important;
}