Github user kxepal commented on a diff in the pull request: https://github.com/apache/couchdb-fauxton/pull/324#discussion_r26829588 --- Diff: app/addons/components/assets/less/docs.less --- @@ -0,0 +1,101 @@ +// Licensed under the Apache License, Version 2.0 (the "License"); you may not +// use this file except in compliance with the License. You may obtain a copy of +// the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +// License for the specific language governing permissions and limitations under +// the License. + +@import "../../../../../assets/less/variables.less"; +@import "../../../../../assets/less/bootstrap/mixins.less"; + +#doc-list { + .custom-inputs { + display: none; + } + padding: 30px 12px 0 12px; + div.doc-row { + margin-bottom: 20px; + .doc-item { + vertical-align: top; + position: relative; + .box-shadow(3px 4px 0 rgba(0, 0, 0, 0.3)); + .doc-data { + border-bottom: 1px solid @docHeaderBorderBottom; + border-left: 1px solid @docHeaderOtherBorders; + border-right: 1px solid @docHeaderOtherBorders; + } + header { + font-weight: bold; + position: relative; + padding: 20px; + background-color: @docHeaderBG; + border-bottom: 1px solid @docHeaderBorderBottom; + border-left: 1px solid @docHeaderOtherBorders; + border-right: 1px solid @docHeaderOtherBorders; + border-top: 1px solid @docHeaderOtherBorders; + .header-doc-id { + color: @docHeaderDocId; + margin-left: 10px; + } + .header-keylabel, + .fonticon-pencil { + color: @docHeaderLabels; + } + .doc-edit-symbol { + top: -3px; + position: relative; + } + .fonticon-pencil { + font-size: 20px; + } + .fonticon-pencil:hover { + color: @docHeaderDocId; + } + } + } + } +} + +.show-select { + #doc-list { + padding: 30px 0 30px 0; + .custom-inputs { + display: block; + float: left; + } + } + .checkbox.inline { + padding-top: 32px; + padding-left: 0; + label { + padding-left: 23px; // 7px to the right-border + 16px around + } + } + .doc-item { + width: auto; + overflow: hidden; + } + label.label-checkbox-doclist { + // https://code.google.com/p/chromium/issues/detail?id=411065 --- End diff -- This bug looks as fixed in November of the past year. Still actual?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---