Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
0d86cc2f
Commit
0d86cc2f
authored
Aug 11, 2021
by
davidzagi93@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fng terminal css conflicts
x linting issues
parent
f4f20cec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
remix-ui-terminal.css
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
+59
-0
No files found.
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
View file @
0d86cc2f
...
...
@@ -355,3 +355,62 @@ input #terminalCliInput {
opacity
:
0.8
;
}
/* Style the accordion section */
.accordion__section
{
display
:
flex
;
flex-direction
:
column
;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion
{
background-color
:
#eee
;
color
:
#444
;
cursor
:
pointer
;
padding
:
18px
;
display
:
flex
;
align-items
:
center
;
border
:
none
;
outline
:
none
;
transition
:
background-color
0.6s
ease
;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion
:hover
,
.active
{
background-color
:
#ccc
;
}
/* Style the accordion content title */
.accordion__title
{
font-family
:
"Open Sans"
,
sans-serif
;
font-weight
:
600
;
font-size
:
14px
;
}
/* Style the accordion chevron icon */
.accordion__icon
{
margin-left
:
auto
;
transition
:
transform
0.6s
ease
;
}
/* Style to rotate icon when state is active */
.rotate
{
transform
:
rotate
(
90deg
);
}
/* Style the accordion content panel. Note: hidden by default */
.accordion__content
{
background-color
:
white
;
overflow
:
hidden
;
transition
:
max-height
0.6s
ease
;
}
/* Style the accordion content text */
.accordion__text
{
font-family
:
"Open Sans"
,
sans-serif
;
font-weight
:
400
;
font-size
:
14px
;
padding
:
18px
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment