zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.leaflet-control-objdetect .objdetect-panel{
  padding: 6px 10px 6px 6px;
  background: #fff;
  min-width: 250px; 
  max-width: 300px;
 
  .close-button{
    display: inline-block;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAQAAAD8x0bcAAAAkUlEQVR4AZWRxQGDUBAFJ9pMflNIP/iVSkIb2wgccXd7g7O+3JXCQUgqBAfFSl8CMooJGQHfuUlEwZpoahZQ7ODTSXWJQkxyioock7BL2tXmdF4moJNX6IDZfbUBQNrX7qfeXfPuqwBAQjEz60w64htGJ+luFH48gt+NYe6v5b/cnr9asM+HlRQ2Qlwh2CjuqQQ9vKsKTwhQ1wAAAABJRU5ErkJggg==);
    height: 18px;
    width: 18px;
    margin-right: 0;
    float: right;
    vertical-align: middle;
    text-align: right;
    margin-top: 0px;
    margin-left: 16px;
    position: relative;
    left: 2px;
 
    &:hover{
      opacity: 0.7;
      cursor: pointer;
    }
  }
 
  .title{
    font-size: 120%;
    margin-right: 60px;
  }
 
  hr{
    clear: both;
    margin: 6px 0px;
    border-color: #ddd;
  }
 
  label{
    padding-top: 5px;
    &.no-pad{
      padding-top: 0;
    }
  }
 
  select, input{
    height: auto;
    padding: 4px;
  }
 
  *{
    font-size: 12px;
  }
 
  .row.form-group.form-inline{
    margin-bottom: 8px;
  }
 
  .model-selector{
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    select{
      margin-right: 8px;
    }
  }
 
  .detect-action-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    .btn-download{
      margin-right: 6px;
    }
  }
 
  .dropdown-menu{
    a{
      width: 100%;
      text-align: left;
      display: block;
      padding-top: 0;
      padding-bottom: 0;
    }
  }
 
  .action-buttons{
    margin-top: 12px;
  }
}