mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
(core) Styling text button for left alignment
Summary: Adding text alignment for text buttons. Test Plan: Existing. Reviewers: JakubSerafin Reviewed By: JakubSerafin Differential Revision: https://phab.getgrist.com/D3884
This commit is contained in:
parent
3513c1e8d2
commit
0bc758e3d0
@ -279,7 +279,7 @@ export class RightPanel extends Disposable {
|
|||||||
cssSeparator(),
|
cssSeparator(),
|
||||||
cssSection(
|
cssSection(
|
||||||
dom.maybe(refSelect.isForeignRefCol, () => [
|
dom.maybe(refSelect.isForeignRefCol, () => [
|
||||||
cssLabel('Add referenced columns'),
|
cssLabel(t('Add referenced columns')),
|
||||||
cssRow(refSelect.buildDom()),
|
cssRow(refSelect.buildDom()),
|
||||||
cssSeparator()
|
cssSeparator()
|
||||||
]),
|
]),
|
||||||
|
@ -106,6 +106,7 @@ export const bigPrimaryButtonLink = tbind(button, null, {link: true, large: true
|
|||||||
export const textButton = styled(cssButton, `
|
export const textButton = styled(cssButton, `
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
|
text-align: left;
|
||||||
background-color: inherit !important;
|
background-color: inherit !important;
|
||||||
&:disabled {
|
&:disabled {
|
||||||
color: ${theme.controlPrimaryDisabled};
|
color: ${theme.controlPrimaryDisabled};
|
||||||
|
Loading…
Reference in New Issue
Block a user