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

toolbar.scss « style - github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb5861b20534f6c78646cc8636eec719c8409655 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@import "bourbon/bourbon";

#password-toolbar {
  position: fixed;
  z-index: 99999;
  background-color: #f5e79e;
  border-bottom: 1px;
  border-left: 1px;
  padding: 10px;
  border-right: 1px;
  top: 0;
  width: calc(100% - 20px);
  height: 30px;
  font-size: 14px;
  /*left: 50%;
  margin-left: -150px;*/

  .toolbar-text {
    float: left;
    display: inline-block;
    margin-top: 5px;
  }

  .passman-btn {
    float: right;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    @include user-select(none);
    background-image: none;
    background: #3498db;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
  }

  .passman-btn:last-child {
    margin-right: 15px;
  }

  .passman-btn:hover {
    background: #3cb0fd;
    text-decoration: none;
  }
}