7 9 stable
Created by: suhongrui
Merge request reports
Activity
Created by: TeatroIO
I've prepared a stage to preview changes. Open stage or view logs.
By Administrator on 2015-03-18T16:35:51 (imported from GitLab project)
By Administrator on 2015-03-18T16:35:51 (imported from GitLab)
195 //** Text color for `<input>`s 196 53 $input-color: $text-color; 197 //** `<input>` border color 198 $input-border: #dce4ec; 199 200 // TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4 201 //** Default `.form-control` border radius 202 // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS. 203 // $input-border-radius: $border-radius-base 204 //** Large `.form-control` border radius 205 // $input-border-radius-large: $border-radius-large 206 //** Small `.form-control` border radius 207 // $input-border-radius-small: $border-radius-small 208 209 //** Border color for inputs on focus 54 $input-border: #DDD; 39 39 40 40 .nav-sidebar li { 41 41 &.active a { 42 color: #333; 42 color: $text-color; 158 left: 198px; 160 159 font-size: 13px; 161 background: #EEE; 160 background: transparent; 162 161 color: black; 163 border-left: 1px solid rgba(0,0,0,0.035); 164 border-right: 1px solid rgba(0,0,0,0.035); 162 border-left: 1px solid $border-color; 163 border-bottom: 1px solid $border-color; 165 164 } 166 165 167 166 .collapse-nav a:hover { 168 167 text-decoration: none; 169 color: #333; 170 background: #eaeaea; 168 background: #f2f6f7; Created by: houndci-bot
Color literals like
#f2f6f7
should only be used in variable declarations; they should be referred to via variable everywhere else.By Administrator on 2015-03-18T16:35:56 (imported from GitLab project)
By Administrator on 2015-03-18T16:35:56 (imported from GitLab)
8 9 $avatar_radius: 50%; 9 10 $code_font_size: 13px; 10 11 $code_line_height: 1.5; 11 $border-color: #dce4ec; 12 $background-color: #ECF0F1; 12 $border-color: #E5E5E5; 81 82 //== Iconography 83 // 84 //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower. 85 86 //** Load fonts from this directory. 87 88 // [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path. 89 // [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths. 90 // $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") 91 92 //** File name for all font files. 93 // $icon-font-name: "glyphicons-halflings-regular" 94 //** Element ID within SVG icon file. 95 // $icon-font-svg-id: "glyphicons_halflingsregular" 36 $font-family-sans-serif: $regular_font; 82 //== Iconography 83 // 84 //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower. 85 86 //** Load fonts from this directory. 87 88 // [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path. 89 // [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths. 90 // $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") 91 92 //** File name for all font files. 93 // $icon-font-name: "glyphicons-halflings-regular" 94 //** Element ID within SVG icon file. 95 // $icon-font-svg-id: "glyphicons_halflingsregular" 36 $font-family-sans-serif: $regular_font; 37 $font-family-monospace: $monospace_font; 70 70 height: 0; 71 71 border-style: solid; 72 72 border-width: 9px 9px 9px 0; 73 border-color: transparent #f5f5f6 transparent transparent; 73 border-color: transparent $background-color transparent transparent; Created by: houndci-bot
Color literals like
transparent
should only be used in variable declarations; they should be referred to via variable everywhere else.By Administrator on 2015-03-18T16:35:57 (imported from GitLab project)
By Administrator on 2015-03-18T16:35:57 (imported from GitLab)
154 154 overflow: auto; 155 155 .event-last-push-text { 156 156 @include str-truncated(100%); 157 padding: 5px 0; Created by: dzaporozhets
Looks like a bot created an PR from one branch to another. And its interesting that any user at GitHub can create a pull request in your project even without being team member
By Administrator on 2015-03-18T17:08:19 (imported from GitLab project)
By Administrator on 2015-03-18T17:08:19 (imported from GitLab)