Browse Source

Remove box-shadow from UI, fix dashboard issue (#3065)

for-closed-social
silverwind 7 years ago
committed by Lauris BH
parent
commit
4947cfb7b0
4 changed files with 13 additions and 2 deletions
  1. +1
    -1
      public/css/index.css
  2. +6
    -0
      public/less/_base.less
  3. +5
    -0
      public/less/_dashboard.less
  4. +1
    -1
      templates/user/dashboard/dashboard.tmpl

+ 1
- 1
public/css/index.css
File diff suppressed because it is too large
View File


+ 6
- 0
public/less/_base.less View File

@ -146,6 +146,12 @@ pre, code {
}
}
&.menu,
&.vertical.menu,
&.segment {
box-shadow: none;
}
.text {
&.red {
color: #d95c5c !important;

+ 5
- 0
public/less/_dashboard.less View File

@ -48,6 +48,11 @@
}
}
}
/* Accomodate for Semantic's 1px hacks on .attached elements */
.dashboard-repos {
margin: 0 1px;
}
}
&.feeds {

+ 1
- 1
templates/user/dashboard/dashboard.tmpl View File

@ -31,7 +31,7 @@
<a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.i18n.Tr "repository"}}</a>
<a :class="{item: true, active: tab === 'organizations'}" @click="changeTab('organizations')">{{.i18n.Tr "organization"}}</a>
</div>
<div v-show="tab === 'repos'" class="ui tab active list">
<div v-show="tab === 'repos'" class="ui tab active list dashboard-repos">
<h4 class="ui top attached header">
{{.i18n.Tr "home.my_repos"}} <span class="ui grey label">${reposTotalCount}</span>
<div class="ui right">

Loading…
Cancel
Save