|  | /* | 
|  | * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 
|  | * Use of this source code is governed by a BSD-style license that can be | 
|  | * found in the LICENSE file. | 
|  | */ | 
|  |  | 
|  | :host { | 
|  | padding: 0; | 
|  | margin: 0; | 
|  | display: inline-flex; | 
|  | flex-shrink: 0; | 
|  | align-items: center !important; | 
|  | } | 
|  |  | 
|  | input { | 
|  | height: 12px; | 
|  | width: 12px; | 
|  | flex-shrink: 0; | 
|  | } | 
|  |  | 
|  | input:focus { | 
|  | outline: auto 5px -webkit-focus-ring-color; | 
|  | } | 
|  |  | 
|  | input.dt-checkbox-themed { | 
|  | -webkit-appearance: none; | 
|  | margin: auto 5px auto 2px; | 
|  | border: 1px solid rgb(45, 45, 45); | 
|  | border-radius: 3px; | 
|  | background-color: rgb(102, 102, 102); | 
|  | } | 
|  |  | 
|  | input.dt-checkbox-themed:after { | 
|  | content: ''; | 
|  | line-height: 10px; | 
|  | position: absolute; | 
|  | cursor: pointer; | 
|  | width: 12px; | 
|  | height: 12px; | 
|  | background: none; | 
|  | } | 
|  |  | 
|  | input.dt-checkbox-themed:checked:after { | 
|  | background-color: #333; | 
|  | } | 
|  |  | 
|  | input.dt-checkbox-themed:after { | 
|  | -webkit-mask-image: url(Images/checkboxCheckmark.png); | 
|  | -webkit-mask-size: 11px 11px; | 
|  | -webkit-mask-position: 0 0; | 
|  | } | 
|  |  | 
|  | @media (-webkit-min-device-pixel-ratio: 1.1) { | 
|  | input.dt-checkbox-themed:after { | 
|  | -webkit-mask-image: url(Images/checkboxCheckmark_2x.png); | 
|  | } | 
|  |  | 
|  | } /* media */ | 
|  |  | 
|  | .dt-checkbox-text { | 
|  | margin-left: 3px; | 
|  | overflow: hidden; | 
|  | text-overflow: ellipsis; | 
|  | } | 
|  |  | 
|  | .dt-checkbox-subtitle { | 
|  | color: gray; | 
|  | } |