Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clipboard-js.less « less « assets « docs - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1b628fd9187506310901dfcc2e61d1273967308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// clipboard.js
//
// JS-based `Copy` buttons for code snippets.

.bs-clipboard {
  position: relative;
  display: none;
  float: right;

  + .highlight {
    margin-top: 0;
  }
}

.btn-clipboard {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  padding: 4px 8px;
  font-size: 12px;
  color: #818a91;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;

  &:hover {
    color: #fff;
    background-color: #027de7;
  }
}

@media (min-width: @screen-sm-min) {
  .bs-clipboard {
    display: block;
  }
}