[gnome] Add new extensions
This commit is contained in:
@ -0,0 +1,131 @@
|
||||
.app-pinner-icons {
|
||||
height: 100%;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.app-pinner-icon-box {
|
||||
height: 100%;
|
||||
padding: 2px 0;
|
||||
margin: auto 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.app-pinner-icon {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0 !important;
|
||||
margin: auto;
|
||||
border-radius: 6px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.app-pinner-link-icon {
|
||||
margin: auto;
|
||||
-st-icon-style: symbolic;
|
||||
}
|
||||
|
||||
.app-pinner-running-indicator {
|
||||
background-color: #ff0000;
|
||||
border-radius: 4px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 3px;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.app-pinner-label {
|
||||
max-width: 100px;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 0.8em;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.app-pinner-remove-btn {
|
||||
font-size: 18px;
|
||||
background-color: transparent;
|
||||
border-radius: 100px;
|
||||
min-width: 18px;
|
||||
min-height: 18px;
|
||||
padding: 2px;
|
||||
display: flex;
|
||||
align-items: right;
|
||||
justify-content: right;
|
||||
transition: background-color 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.app-pinner-remove-btn:hover {
|
||||
background-color: rgba(255, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.app-pinner-remove-label {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
width: 200px;
|
||||
padding: 8px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.app-pinner-link-input {
|
||||
min-width: 200px;
|
||||
padding: 6px 12px;
|
||||
border-radius: 6px;
|
||||
background-color: rgba(0,0,0,0.3);
|
||||
color: #ffffff;
|
||||
border: 1px solid rgba(255,255,255,0.2);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.app-pinner-link-input:focus {
|
||||
border-color: #3584e4;
|
||||
box-shadow: inset 0 0 0 1px #3584e4;
|
||||
}
|
||||
|
||||
.app-pinner-add-link-btn {
|
||||
background-color: rgba(78, 166, 78, 0.8);
|
||||
border-radius: 8px;
|
||||
min-width: 32px;
|
||||
min-height: 32px;
|
||||
padding: 6px;
|
||||
margin-left: 6px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
.app-pinner-add-link-btn:hover {
|
||||
background-color: rgba(98, 196, 98, 0.9);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.app-pinner-add-link-btn:active {
|
||||
background-color: rgba(68, 146, 68, 0.9);
|
||||
}
|
||||
|
||||
.app-pinner-icon-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.app-pinner-link-box {
|
||||
margin: 8px;
|
||||
padding: 6px;
|
||||
background-color: rgba(255,255,255,0.05);
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
}
|
||||
Reference in New Issue
Block a user