mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-25 02:00:35 -06:00
Fix subscription button radius
This commit is contained in:
parent
c5f3ff39e5
commit
9c0cdc5047
@ -2,7 +2,8 @@
|
||||
"root": true,
|
||||
"ignorePatterns": [
|
||||
"projects/**/*",
|
||||
"node_modules/"
|
||||
"node_modules/",
|
||||
"src/standalone/player/dist"
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
|
@ -3,7 +3,7 @@ import { ConfigService } from '@app/+admin/config/shared/config.service'
|
||||
import { AuthService, ScreenService, ServerService, User } from '@app/core'
|
||||
import { FormReactive } from '@app/shared/shared-forms'
|
||||
import { USER_ROLE_LABELS } from '@shared/core-utils/users'
|
||||
import { HTMLServerConfig, UserAdminFlag, UserRole, VideoResolution } from '@shared/models'
|
||||
import { HTMLServerConfig, UserAdminFlag, UserRole } from '@shared/models'
|
||||
import { SelectOptionsItem } from '../../../../../types/select-options-item.model'
|
||||
|
||||
@Directive()
|
||||
|
@ -402,6 +402,6 @@ my-global-icon {
|
||||
}
|
||||
|
||||
&.channel-icon {
|
||||
top: -2px;
|
||||
top: -2px;
|
||||
}
|
||||
}
|
||||
|
@ -37,7 +37,7 @@
|
||||
class="btn-group" ngbDropdown autoClose="outside" placement="bottom-right bottom-left bottom auto"
|
||||
role="group" aria-label="Multiple ways to subscribe to the current channel" i18n-aria-label
|
||||
>
|
||||
<button class="btn dropdown-toggle-split" ngbDropdownToggle aria-label="Open subscription dropdown" i18n-aria-label>
|
||||
<button class="btn dropdown-toggle-split last-in-group" ngbDropdownToggle aria-label="Open subscription dropdown" i18n-aria-label>
|
||||
<ng-container
|
||||
*ngIf="!isUserLoggedIn(); then userLoggedOut">
|
||||
</ng-container>
|
||||
|
3
client/src/sass/bootstrap.scss
vendored
3
client/src/sass/bootstrap.scss
vendored
@ -333,7 +333,10 @@
|
||||
.input-group-text > .dropdown-toggle {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group,
|
||||
.btn-group {
|
||||
.last-in-group {
|
||||
border-top-right-radius: 3px !important;
|
||||
border-bottom-right-radius: 3px !important;
|
||||
|
Loading…
Reference in New Issue
Block a user