nesquena/gitdocs

View on GitHub

Showing 676 of 676 total issues

Adjoining classes: .twipsy.below .twipsy-arrow
Open

.twipsy.below .twipsy-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}

Rule doesn't have all its properties in alphabetical order.
Open

.twipsy-arrow{position:absolute;width:0;height:0;}

Rule doesn't have all its properties in alphabetical order.
Open

.twipsy-inner{padding:3px 8px;background-color:#000000;color:white;text-align:center;max-width:200px;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}

Rule doesn't have all its properties in alphabetical order.
Open

.twipsy.left .twipsy-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}

Adjoining classes: .popover.right .arrow
Open

.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}

Adjoining classes: .popover.left .arrow
Open

.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}

Rule doesn't have all its properties in alphabetical order.
Open

pre.CodeRay {
Severity: Minor
Found in lib/gitdocs/public/css/coderay.css by csslint

Rule doesn't have all its properties in alphabetical order.
Open

.popover .inner{background:#000000;background:rgba(0, 0, 0, 0.8);padding:3px;overflow:hidden;width:280px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);}

Rule doesn't have all its properties in alphabetical order.
Open

.tilt code {
Severity: Minor
Found in lib/gitdocs/public/css/tilt.css by csslint

%w-literals should be delimited by [ and ].
Open

      it { subject.map(&:name).must_equal %w(dir1 file1 file2 .hidden) }
Severity: Minor
Found in test/unit/repository_path_test.rb by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

When using method_missing, define respond_to_missing? and fall back on super.
Open

    def method_missing(method, *args, &block)
      aruba.send(method, *args, &block)
    end
Severity: Minor
Found in test/integration/test_helper.rb by rubocop

This cop checks for the presence of method_missing without also defining respond_to_missing? and falling back on super.

Example:

#bad
def method_missing(name, *args)
  # ...
end

#good
def respond_to_missing?(name, include_private)
  # ...
end

def method_missing(name, *args)
  # ...
  super
end

Unnecessary utf-8 encoding comment.
Open

# -*- encoding : utf-8 -*-

Unnecessary utf-8 encoding comment.
Open

# -*- encoding : utf-8 -*-
Severity: Minor
Found in lib/gitdocs/repository/path.rb by rubocop

The box-sizing property isn't supported in IE6 and IE7.
Open

input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}

Rule doesn't have all its properties in alphabetical order.
Open

blockquote{margin-bottom:18px;border-left:5px solid #eee;padding-left:15px;}blockquote p{font-size:14px;font-weight:300;line-height:18px;margin-bottom:0;}

Rule doesn't have all its properties in alphabetical order.
Open

label{padding-top:6px;font-size:13px;line-height:18px;float:left;width:130px;text-align:right;color:#404040;}

Rule doesn't have all its properties in alphabetical order.
Open

input.span10,textarea.span10{display:inline-block;float:none;width:570px;margin-left:0;}

Using height with border can sometimes make elements larger than you expect.
Open

.input-prepend .add-on,.input-append .add-on{position:relative;background:#f5f5f5;border:1px solid #ccc;z-index:2;float:left;display:block;width:auto;min-width:16px;height:18px;padding:4px 4px 4px 5px;margin-right:-1px;font-weight:normal;line-height:18px;color:#bfbfbf;text-align:center;text-shadow:0 1px 0 #ffffff;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}

Rule doesn't have all its properties in alphabetical order.
Open

.inputs-list input[type=radio],.inputs-list input[type=checkbox]{margin-bottom:0;margin-left:-20px;float:left;}

Rule doesn't have all its properties in alphabetical order.
Open

.form-stacked label{display:block;float:none;width:auto;font-weight:bold;text-align:left;line-height:20px;padding-top:0;}
Severity
Category
Status
Source
Language