Skip to content

Commit f23e6c5

Browse files
authored
Merge branch 'master' into joe-patch-012
2 parents 5735cc2 + d3fa766 commit f23e6c5

File tree

20 files changed

+33
-33
lines changed

20 files changed

+33
-33
lines changed

apps/remix-ide/src/assets/css/themes/remix-dark_tvx1s2.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
--bs-link-hover-color: #525765;
111111
--bs-link-hover-color-rgb: 82, 87, 101;
112112
--bs-code-color: #e83e8c;
113-
--bs-highlight-color: #fff;
113+
--bs-highlight-color: #222336;
114114
--bs-highlight-bg: #fdebd0;
115115
--bs-border-width: 1px;
116116
--bs-border-style: solid;
@@ -397,7 +397,7 @@ small, .small {
397397
}
398398

399399
mark, .mark {
400-
padding: 0.1875em;
400+
padding: 0.1875em !important;
401401
color: var(--bs-highlight-color);
402402
background-color: var(--bs-highlight-bg);
403403
}
@@ -3119,7 +3119,7 @@ textarea.form-control-lg {
31193119
color: var(--bs-btn-disabled-color);
31203120
pointer-events: none;
31213121
background-color: var(--bs-btn-disabled-bg);
3122-
border-color: var(--bs-btn-disabled-border-color);
3122+
/* border-color: var(--bs-btn-disabled-border-color); */
31233123
opacity: var(--bs-btn-disabled-opacity);
31243124
}
31253125

apps/remix-ide/src/assets/css/themes/remix-light_powaqg.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3104,7 +3104,7 @@ textarea.form-control-lg {
31043104
color: var(--bs-btn-disabled-color);
31053105
pointer-events: none;
31063106
background-color: var(--bs-btn-disabled-bg);
3107-
border-color: var(--bs-btn-disabled-border-color);
3107+
/* border-color: var(--bs-btn-disabled-border-color); */
31083108
opacity: var(--bs-btn-disabled-opacity);
31093109
}
31103110

libs/remix-ui/git/src/components/navigation/branchedetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const BrancheDetailsNavigation = (props: BrancheDetailsNavigationProps) =
6868
{
6969
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
7070
}
71-
<i className="fa fa-code-branch ms-1"></i>
71+
<i className="fa fa-code-branch ms-2"></i>
7272
<div className={`ms-1 ${context.currentBranch.name === branch.name && allowCheckout ? 'text-success' : ''}`}>{branch.name} {branch.remote ? `on ${branch.remote.name}` : ''}</div>
7373

7474
</div>

libs/remix-ui/git/src/components/navigation/branches.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const BranchesNavigation = ({ eventKey, activePanel, callback }) => {
2222
return (
2323
<>
2424
<div className={'d-flex justify-content-between pt-1 ' + (activePanel === eventKey? 'bg-light': '')}>
25-
<span data-id='branches-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75'>
25+
<span data-id='branches-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75 ms-1'>
2626
{
2727
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
2828
}

libs/remix-ui/git/src/components/navigation/clone.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const CloneNavigation = ({ eventKey, activePanel, callback }) => {
1616
return (
1717
<>
1818
<div className={'d-flex justify-content-between pb-1 pt-1 ' + (activePanel === eventKey? 'bg-light': '')}>
19-
<span data-id='clone-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75'>
19+
<span data-id='clone-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75 ms-1'>
2020
{
2121
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
2222
}

libs/remix-ui/git/src/components/navigation/commands.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const CommandsNavigation = ({ eventKey, activePanel, callback }) => {
2121
return (
2222
<>
2323
<div className={'d-flex justify-content-between ' + (activePanel === eventKey ? 'bg-light' : '')}>
24-
<span data-id='commands-panel' onClick={() => handleClick()} role={'button'} className="nav d-flex justify-content-start align-items-center w-75">
24+
<span data-id='commands-panel' onClick={() => handleClick()} role={'button'} className="nav d-flex justify-content-start align-items-center w-75 ms-1">
2525
{
2626
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
2727
}

libs/remix-ui/git/src/components/navigation/commits.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const CommitsNavigation = ({ eventKey, activePanel, callback, title, bran
4343
return (
4444
<>
4545
<div className={`d-flex justify-content-between ${activePanel === eventKey ? 'bg-light' : ''} ${ahead || behind? 'text-success':''}`}>
46-
<span data-id={`commits-panel${ahead?'-ahead':''}${behind?'-behind':''}`} onClick={() => handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-100'>
46+
<span data-id={`commits-panel${ahead?'-ahead':''}${behind?'-behind':''}`} onClick={() => handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-100 ms-1'>
4747
{
4848
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
4949
}

libs/remix-ui/git/src/components/navigation/github.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const GitHubNavigation = ({ eventKey, activePanel, callback }) => {
1717
return (
1818
<>
1919
<div className={'d-flex justify-content-between pt-1 pb-1 ' + (activePanel === eventKey? 'bg-light': '')}>
20-
<span data-id='github-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75'>
20+
<span data-id='github-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75 ms-1'>
2121
{
2222
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
2323
}

libs/remix-ui/git/src/components/navigation/log.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const LogNavigation = ({ eventKey, activePanel, callback }) => {
4646
return (
4747
<>
4848
<div className={'d-flex justify-content-between pt-1 pb-1 ' + (activePanel === eventKey ? 'bg-light' : '')}>
49-
<span onClick={() => handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75'>
49+
<span onClick={() => handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75 ms-1'>
5050
{
5151
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
5252
}

libs/remix-ui/git/src/components/navigation/remotes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const RemotesNavigation = ({ eventKey, activePanel, callback }) => {
1919
return (
2020
<>
2121
<div className={'d-flex justify-content-between pt-1 pb-1 ' + (activePanel === eventKey? 'bg-light': '')}>
22-
<span data-id='remotes-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75'>
22+
<span data-id='remotes-panel' onClick={()=>handleClick()} role={'button'} className='nav d-flex justify-content-start align-items-center w-75 ms-1'>
2323
{
2424
activePanel === eventKey ? <FontAwesomeIcon className='' icon={faCaretDown}></FontAwesomeIcon> : <FontAwesomeIcon className='' icon={faCaretRight}></FontAwesomeIcon>
2525
}

0 commit comments

Comments
 (0)