2021-12-23 16:49:57 +00:00
|
|
|
@import "./tabler.scss";
|
|
|
|
|
@import "./colors.scss";
|
|
|
|
|
@import "./z-index.scss";
|
|
|
|
|
@import "./mixins.scss";
|
2021-05-14 09:29:48 +00:00
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
// variables
|
|
|
|
|
$border-radius: 4px;
|
|
|
|
|
|
2021-04-10 07:23:30 +00:00
|
|
|
body {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-04-10 07:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
input,
|
|
|
|
|
button {
|
2021-12-09 03:43:32 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn:hover {
|
|
|
|
|
border-color: $primary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-sm {
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-04 17:41:25 +00:00
|
|
|
.padding-0 {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-09 03:43:32 +00:00
|
|
|
.font-500 {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-04 17:41:25 +00:00
|
|
|
.text-right {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-05 04:58:10 +00:00
|
|
|
.navbar {
|
|
|
|
|
max-height: 48px;
|
|
|
|
|
min-height: auto;
|
|
|
|
|
|
|
|
|
|
.nav-item.active:after {
|
|
|
|
|
bottom: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 09:51:17 +00:00
|
|
|
.auth-main {
|
|
|
|
|
height: 1000px;
|
2022-02-02 02:37:02 +00:00
|
|
|
padding-top: calc(0.25 * 100vh);
|
2022-01-27 09:51:17 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
svg,
|
|
|
|
|
img {
|
2022-01-27 09:51:17 +00:00
|
|
|
height: 50px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.col-4 {
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.horizontal-line {
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
border: 1px solid #b1b1b1;
|
|
|
|
|
top: 25px;
|
|
|
|
|
margin: 0px auto;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
}
|
|
|
|
|
.sso-ico {
|
|
|
|
|
div {
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
}
|
2022-02-02 02:37:02 +00:00
|
|
|
}
|
2022-01-27 09:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.emoji-mart-scroll {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.emoji-mart-scroll + .emoji-mart-bar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.accordion-item,
|
|
|
|
|
.accordion-button {
|
2021-12-07 12:07:55 +00:00
|
|
|
background-color: inherit;
|
2021-12-04 17:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.accordion-button {
|
|
|
|
|
font-weight: 400 !important;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.accordion-button:not(.collapsed) {
|
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.accordion-body {
|
|
|
|
|
.form-label {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 12px;
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #61656c;
|
2021-12-04 17:41:25 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
.editor {
|
|
|
|
|
.header-container {
|
|
|
|
|
max-width: 100%;
|
2021-12-16 07:35:07 +00:00
|
|
|
padding: 0 15px;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
2021-05-30 15:51:31 +00:00
|
|
|
.resizer-active {
|
2022-02-04 15:24:41 +00:00
|
|
|
border: solid 1px $primary !important;
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-05-30 15:51:31 +00:00
|
|
|
.top-right,
|
|
|
|
|
.top-left,
|
|
|
|
|
.bottom-right,
|
|
|
|
|
.bottom-left {
|
|
|
|
|
background: white;
|
|
|
|
|
border-radius: 10px;
|
2022-02-04 15:24:41 +00:00
|
|
|
border: solid 1px $primary;
|
2021-05-30 15:51:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.resizer-selected {
|
2021-06-04 13:22:22 +00:00
|
|
|
outline-width: thin;
|
|
|
|
|
outline-style: solid;
|
|
|
|
|
outline-color: #ffda7e;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-manager {
|
2022-02-03 02:54:16 +00:00
|
|
|
user-select: none;
|
|
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
// .row {
|
|
|
|
|
// width: 605px;
|
|
|
|
|
// }
|
2021-04-30 06:31:32 +00:00
|
|
|
.btn {
|
|
|
|
|
height: 31px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.header {
|
2021-05-22 14:49:16 +00:00
|
|
|
--tblr-gutter-x: 0rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.nav-header {
|
2021-05-01 09:01:15 +00:00
|
|
|
color: #3e525b;
|
2021-04-30 06:31:32 +00:00
|
|
|
.nav-tabs {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-24 13:09:00 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.query-details {
|
2022-02-02 16:59:57 +00:00
|
|
|
margin-top: 25px;
|
2021-05-24 13:09:00 +00:00
|
|
|
}
|
2021-05-24 15:25:42 +00:00
|
|
|
|
|
|
|
|
.advanced-options-container {
|
2022-02-02 16:59:57 +00:00
|
|
|
// margin-top: 42px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-name-field input {
|
2022-02-21 17:40:43 +00:00
|
|
|
max-width: 180px;
|
2022-02-02 16:59:57 +00:00
|
|
|
font-weight: 600;
|
2021-05-24 15:25:42 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.left-sidebar {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2021-04-07 06:26:19 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.left-sidebar::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-04-07 07:03:03 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.left-sidebar {
|
|
|
|
|
height: 100%;
|
2021-08-17 06:01:12 +00:00
|
|
|
width: 3%;
|
|
|
|
|
position: fixed;
|
2021-04-30 06:31:32 +00:00
|
|
|
z-index: 1;
|
|
|
|
|
left: 0;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: border-box;
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 0px 1px 3px 0px;
|
|
|
|
|
|
|
|
|
|
.accordion-item {
|
|
|
|
|
border: solid rgba(101, 109, 119, 0.16);
|
|
|
|
|
border-width: 1px 0px 1px 0px;
|
2021-04-07 06:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.datasources-container {
|
|
|
|
|
height: 50%;
|
|
|
|
|
overflow-y: scroll;
|
2021-05-01 09:01:15 +00:00
|
|
|
|
|
|
|
|
tr {
|
|
|
|
|
border-color: #f1f1f1;
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.variables-container {
|
|
|
|
|
height: 50%;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
}
|
2021-04-10 14:25:32 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.variables-container::-webkit-scrollbar-thumb,
|
|
|
|
|
.datasources-container::-webkit-scrollbar-thumb {
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.variables-container::-webkit-scrollbar,
|
|
|
|
|
.datasources-container::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.variables-container,
|
|
|
|
|
.datasources-container {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2021-04-02 04:16:26 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.datasources-container {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 500px;
|
|
|
|
|
border: solid rgba(101, 109, 119, 0.16);
|
|
|
|
|
border-width: 1px 0px 1px 0px;
|
2021-04-01 10:59:44 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.datasources-header {
|
2021-04-01 10:59:44 +00:00
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
2021-04-30 06:31:32 +00:00
|
|
|
border-width: 0px 0px 1px 0px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-02 04:16:26 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.editor-sidebar {
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
right: 0;
|
|
|
|
|
overflow-x: hidden;
|
2021-11-16 11:44:09 +00:00
|
|
|
width: 300px;
|
2021-04-30 06:31:32 +00:00
|
|
|
flex: 1 1 auto;
|
2021-12-09 04:42:34 +00:00
|
|
|
top: 45px;
|
2021-04-10 14:25:32 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: border-box;
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 0px 0px 0px 1px;
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #3e525b;
|
2021-04-30 06:31:32 +00:00
|
|
|
border-top-left-radius: 0px;
|
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
|
}
|
2021-04-10 14:25:32 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.inspector {
|
2021-12-07 12:07:55 +00:00
|
|
|
.inspector-add-button {
|
|
|
|
|
background: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-04 17:41:25 +00:00
|
|
|
.inspector-add-button:hover {
|
|
|
|
|
color: $primary;
|
2021-12-23 16:49:57 +00:00
|
|
|
background: #eef3f9;
|
2021-12-04 17:41:25 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.form-control-plaintext {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.header {
|
2021-12-04 17:41:25 +00:00
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 20px;
|
2021-04-30 06:31:32 +00:00
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
2021-07-03 06:49:43 +00:00
|
|
|
border-width: 0px 0px 1px 0px;
|
2021-04-30 06:31:32 +00:00
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
|
|
.component-name {
|
|
|
|
|
font-weight: 500;
|
2021-04-26 19:06:59 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.component-action-button {
|
2021-08-31 14:10:11 +00:00
|
|
|
top: 8px;
|
2021-04-30 06:31:32 +00:00
|
|
|
right: 10px;
|
2021-06-05 13:20:10 +00:00
|
|
|
position: absolute;
|
2021-04-10 14:25:32 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.properties-container {
|
|
|
|
|
.field {
|
|
|
|
|
.form-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-field {
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-select {
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2021-05-10 13:29:00 +00:00
|
|
|
|
|
|
|
|
.select-search__input {
|
|
|
|
|
padding: 0.2375rem 0.75rem;
|
|
|
|
|
font-size: 0.825rem;
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.components-container::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-04-10 14:25:32 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.components-container::-webkit-scrollbar-thumb {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.components-container {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2021-04-07 06:26:19 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.components-container {
|
2022-01-28 08:59:32 +00:00
|
|
|
height: 100%;
|
2021-08-31 14:10:11 +00:00
|
|
|
overflow: auto;
|
2021-11-16 11:44:09 +00:00
|
|
|
overflow-x: hidden;
|
2022-01-28 08:59:32 +00:00
|
|
|
padding-bottom: 20%;
|
2022-02-02 02:37:02 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.component-image-holder {
|
2021-09-01 13:11:17 +00:00
|
|
|
border-radius: 0;
|
2021-09-22 05:13:12 +00:00
|
|
|
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
2021-12-23 16:49:57 +00:00
|
|
|
border: 1px solid #d2ddec;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 4px;
|
2021-04-30 06:31:32 +00:00
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
margin: 0 auto;
|
2021-04-07 06:26:19 +00:00
|
|
|
}
|
2021-09-01 13:11:17 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(66, 153, 225, 0.1);
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-10 14:25:32 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.component-title {
|
|
|
|
|
display: block;
|
2021-09-01 13:11:17 +00:00
|
|
|
margin-top: 10px;
|
2021-05-01 09:01:15 +00:00
|
|
|
color: #3e525b;
|
2021-09-01 13:11:17 +00:00
|
|
|
font-size: 10px;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
text-align: center;
|
2021-12-23 16:49:57 +00:00
|
|
|
word-wrap: break-word;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.component-description {
|
|
|
|
|
color: grey;
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
2021-08-17 06:01:12 +00:00
|
|
|
margin-left: 3%;
|
|
|
|
|
width: 82%;
|
2021-04-30 19:53:52 +00:00
|
|
|
top: 0;
|
|
|
|
|
|
|
|
|
|
.canvas-container::-webkit-scrollbar {
|
2021-09-22 05:13:12 +00:00
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
2021-04-30 19:53:52 +00:00
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-04-02 04:16:26 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container {
|
|
|
|
|
height: 100%;
|
2021-12-09 04:42:34 +00:00
|
|
|
top: 45px;
|
2021-04-30 06:31:32 +00:00
|
|
|
position: fixed;
|
2021-11-16 11:44:09 +00:00
|
|
|
right: 300px;
|
|
|
|
|
left: 3%;
|
2021-04-30 06:31:32 +00:00
|
|
|
overflow-y: auto;
|
2021-04-30 17:36:42 +00:00
|
|
|
overflow-x: scroll;
|
2021-04-30 06:31:32 +00:00
|
|
|
-webkit-box-pack: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
-webkit-box-align: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2022-01-14 08:27:31 +00:00
|
|
|
.real-canvas {
|
|
|
|
|
outline: 1px dotted transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.show-grid {
|
2022-01-14 08:27:31 +00:00
|
|
|
outline: 1px dotted #4d72da;
|
2022-02-02 02:37:02 +00:00
|
|
|
background-image: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
rgba(194, 191, 191, 0.2) 1px,
|
|
|
|
|
transparent 1px
|
|
|
|
|
),
|
|
|
|
|
linear-gradient(
|
|
|
|
|
to bottom,
|
|
|
|
|
rgba(194, 191, 191, 0.2) 1px,
|
|
|
|
|
transparent 1px
|
|
|
|
|
);
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-area {
|
2021-05-09 03:20:44 +00:00
|
|
|
min-height: 2400px;
|
2021-04-30 06:31:32 +00:00
|
|
|
background: #edeff5;
|
|
|
|
|
margin: 0px auto;
|
2021-04-10 03:49:07 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.resizer {
|
|
|
|
|
border: solid 1px transparent;
|
2021-04-01 10:59:44 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-12 17:45:39 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-pane {
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-pane::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-pane {
|
|
|
|
|
height: 350px;
|
|
|
|
|
position: fixed;
|
2021-08-17 06:01:12 +00:00
|
|
|
left: 3%;
|
2022-01-30 08:14:35 +00:00
|
|
|
right: 301px;
|
2021-04-30 06:31:32 +00:00
|
|
|
bottom: 0;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: border-box;
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 1px 0px 0px 0px;
|
|
|
|
|
|
|
|
|
|
.table-responsive {
|
|
|
|
|
scrollbar-width: none;
|
2021-04-01 10:59:44 +00:00
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.table-responsive::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-04-01 12:58:25 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-row {
|
|
|
|
|
cursor: pointer;
|
2022-02-02 16:59:57 +00:00
|
|
|
border-radius: $border-radius;
|
2021-05-22 07:29:44 +00:00
|
|
|
--tblr-gutter-x: 0rem;
|
2022-02-02 16:59:57 +00:00
|
|
|
&:hover {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #edf1ff !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-copy-button {
|
|
|
|
|
display: none;
|
2021-04-01 12:58:25 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-row-selected {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #d2ddec !important;
|
|
|
|
|
&:hover {
|
|
|
|
|
background: #edf1ff !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.query-row-selected.dark {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #2b3546 !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.query-row.dark:hover {
|
|
|
|
|
background: #404d66 !important;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-01 12:58:25 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-row:hover {
|
|
|
|
|
.query-copy-button {
|
|
|
|
|
display: inline-block;
|
2021-04-25 08:45:24 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-row {
|
|
|
|
|
height: 100%;
|
|
|
|
|
--tblr-gutter-x: 0rem;
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
|
2021-06-18 05:33:13 +00:00
|
|
|
.query-definition-pane-wrapper {
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
height: 100%;
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
2021-09-22 05:13:12 +00:00
|
|
|
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
2021-06-18 05:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
/* WebKit */
|
2021-06-18 05:33:13 +00:00
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.query-definition-pane {
|
|
|
|
|
.header {
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 0px 0px 1px 0px;
|
2021-07-03 17:07:50 +00:00
|
|
|
background: white;
|
2021-08-17 06:01:12 +00:00
|
|
|
z-index: 3;
|
2021-12-09 03:43:32 +00:00
|
|
|
min-height: 41px;
|
2021-04-03 11:14:15 +00:00
|
|
|
}
|
2021-05-24 16:13:02 +00:00
|
|
|
|
|
|
|
|
.preview-header {
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 0px 0px 1px 0px;
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.data-pane {
|
|
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
|
|
|
|
border-width: 0px 1px 0px 0px;
|
2021-06-18 05:33:13 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
height: 100%;
|
2022-02-02 16:59:57 +00:00
|
|
|
min-height: 41px;
|
2021-06-18 05:33:13 +00:00
|
|
|
scrollbar-width: none; /* Firefox */
|
2021-09-22 05:13:12 +00:00
|
|
|
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
2022-02-03 02:54:16 +00:00
|
|
|
user-select: none;
|
2021-04-30 06:31:32 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
/* WebKit */
|
2021-06-18 05:33:13 +00:00
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
2021-05-24 13:09:00 +00:00
|
|
|
|
2021-06-18 05:33:13 +00:00
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-05-24 13:09:00 +00:00
|
|
|
|
2021-06-18 05:33:13 +00:00
|
|
|
.queries-container {
|
2022-02-02 16:59:57 +00:00
|
|
|
width: 100%;
|
2021-04-30 06:31:32 +00:00
|
|
|
.queries-header {
|
2021-04-01 10:59:44 +00:00
|
|
|
border: solid rgba(0, 0, 0, 0.125);
|
2021-04-30 06:31:32 +00:00
|
|
|
border-width: 0px 0px 1px 0px;
|
2022-02-02 16:59:57 +00:00
|
|
|
height: 41px;
|
|
|
|
|
padding-top: 1px;
|
2021-05-22 14:49:16 +00:00
|
|
|
--tblr-gutter-x: 0rem;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-05-01 09:01:15 +00:00
|
|
|
|
2021-05-24 13:09:00 +00:00
|
|
|
.query-list::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-01 09:01:15 +00:00
|
|
|
tr {
|
|
|
|
|
border-color: #f1f1f1;
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
height: 40px;
|
|
|
|
|
text-align: center;
|
2021-04-01 10:59:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-height: 450px) {
|
|
|
|
|
.sidebar {
|
|
|
|
|
padding-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
.sidebar a {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-01 10:59:44 +00:00
|
|
|
}
|
2021-04-02 11:09:55 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.viewer {
|
|
|
|
|
.header-container {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
2021-04-02 11:09:55 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.main {
|
|
|
|
|
padding: 0px 10px;
|
2021-04-02 11:09:55 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container {
|
|
|
|
|
scrollbar-width: none;
|
2021-11-16 11:44:09 +00:00
|
|
|
width: 100%;
|
|
|
|
|
// margin-left: 10%;
|
2021-04-02 11:09:55 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-04-25 08:45:24 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.canvas-container {
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: fixed;
|
2021-06-03 16:40:54 +00:00
|
|
|
left: 0;
|
2021-04-30 06:31:32 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
-webkit-box-pack: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
-webkit-box-align: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.canvas-area {
|
|
|
|
|
width: 1280px;
|
2021-11-16 11:44:09 +00:00
|
|
|
min-height: 2400px;
|
2021-04-30 06:31:32 +00:00
|
|
|
background: #edeff5;
|
|
|
|
|
margin: 0px auto;
|
|
|
|
|
background-size: 80px 80px;
|
|
|
|
|
background-repeat: repeat;
|
|
|
|
|
}
|
2021-04-02 11:09:55 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-02 11:09:55 +00:00
|
|
|
}
|
2021-04-06 10:01:05 +00:00
|
|
|
|
|
|
|
|
.modal-header {
|
2021-04-30 06:31:32 +00:00
|
|
|
padding: 0 1.5rem 0 1.5rem;
|
2021-04-08 01:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.page-body,
|
|
|
|
|
.homepage-body {
|
2021-12-07 15:24:53 +00:00
|
|
|
height: 100vh;
|
2022-01-28 02:07:31 +00:00
|
|
|
|
2022-02-06 19:34:52 +00:00
|
|
|
.list-group.list-group-transparent.dark .all-apps-link, .list-group-item-action.dark.active {
|
2022-01-28 02:07:31 +00:00
|
|
|
background-color: $dark-background !important;
|
|
|
|
|
}
|
2021-12-07 15:24:53 +00:00
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
.homepage-dropdown-style {
|
2022-01-24 05:44:50 +00:00
|
|
|
min-width: 11rem;
|
|
|
|
|
display: block;
|
2022-01-27 10:51:38 +00:00
|
|
|
align-items: center;
|
2022-01-24 05:44:50 +00:00
|
|
|
margin: 0;
|
|
|
|
|
line-height: 1.4285714;
|
|
|
|
|
width: 100%;
|
2022-01-27 10:51:38 +00:00
|
|
|
padding: 0.5rem 0.75rem;
|
2022-01-24 05:44:50 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
border: 0;
|
2022-01-27 10:51:38 +00:00
|
|
|
cursor: pointer;
|
2022-01-24 05:44:50 +00:00
|
|
|
}
|
|
|
|
|
.homepage-dropdown-style:hover {
|
|
|
|
|
background: rgba(101, 109, 119, 0.06);
|
|
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
.card-skeleton-container {
|
|
|
|
|
border: 0.5px solid #b4bbc6;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
border-radius: 8px;
|
2022-02-02 07:03:46 +00:00
|
|
|
height: 180px;
|
2022-01-27 10:51:38 +00:00
|
|
|
}
|
2022-02-02 07:03:46 +00:00
|
|
|
|
|
|
|
|
.app-icon-skeleton {
|
|
|
|
|
background-color: #91a4f6;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
width: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-07 16:06:46 +00:00
|
|
|
.folder-icon-skeleton {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background-color: #858896;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
width: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folders-skeleton{
|
|
|
|
|
padding: 9px 12px;
|
|
|
|
|
height: 34px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.card-skeleton-button {
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 60px;
|
|
|
|
|
background: #91a4f6;
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
@media (min-height: 641px) and (max-height: 899px) {
|
|
|
|
|
.homepage-pagination {
|
2022-01-14 08:25:08 +00:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 2rem;
|
|
|
|
|
width: 63%;
|
|
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
}
|
|
|
|
|
@media (max-height: 640px) {
|
|
|
|
|
.homepage-pagination {
|
2022-01-14 08:25:08 +00:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 2rem;
|
|
|
|
|
width: 71%;
|
|
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
}
|
2021-04-08 01:20:30 +00:00
|
|
|
.homepage-body {
|
2021-12-01 08:20:21 +00:00
|
|
|
overflow-y: hidden;
|
2021-04-30 06:31:32 +00:00
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
a:hover {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
button.create-new-app-button {
|
2021-12-23 16:49:57 +00:00
|
|
|
background-color: #4d72fa;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.app-list {
|
|
|
|
|
.app-card {
|
2022-01-20 13:05:37 +00:00
|
|
|
height: 180px;
|
|
|
|
|
max-height: 180px;
|
2021-12-23 16:49:57 +00:00
|
|
|
border: 0.5px solid #b4bbc6;
|
2021-12-01 08:20:21 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 8px;
|
2022-01-20 13:05:37 +00:00
|
|
|
overflow: hidden;
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.app-creation-time {
|
2022-01-20 13:05:37 +00:00
|
|
|
font-size: 0.625rem;
|
2021-12-01 08:20:21 +00:00
|
|
|
line-height: 12px;
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #61656f;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.app-creator {
|
|
|
|
|
font-weight: 500;
|
2022-01-20 13:05:37 +00:00
|
|
|
font-size: 0.625rem;
|
2021-12-01 08:20:21 +00:00
|
|
|
line-height: 12px;
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #292d37;
|
2022-01-20 13:05:37 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-icon-main {
|
|
|
|
|
background-color: $primary;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
|
|
.app-icon {
|
|
|
|
|
img {
|
|
|
|
|
height: 24px;
|
|
|
|
|
width: 24px;
|
2022-02-02 02:37:02 +00:00
|
|
|
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(17deg)
|
|
|
|
|
brightness(104%) contrast(104%);
|
2022-01-20 13:05:37 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-title {
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
font-size: 1rem;
|
2022-01-24 08:07:29 +00:00
|
|
|
font-weight: 400;
|
2022-01-20 13:05:37 +00:00
|
|
|
color: #000000;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
max-height: 40px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 2; /* number of lines to show */
|
2022-01-24 05:51:54 +00:00
|
|
|
line-clamp: 2;
|
2022-01-20 13:05:37 +00:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
2022-01-27 10:51:38 +00:00
|
|
|
font-size: 0.6rem;
|
2022-01-20 13:05:37 +00:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-ico {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
border-radius: 13px;
|
|
|
|
|
&__open {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #d2ddec;
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
width: 14px;
|
|
|
|
|
vertical-align: unset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.menu-ico:hover {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #d2ddec;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-card.highlight {
|
2021-12-23 16:49:57 +00:00
|
|
|
background-color: #f8f8f8;
|
2022-01-20 13:05:37 +00:00
|
|
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
|
|
|
border: 1px solid $primary;
|
2021-12-01 08:20:21 +00:00
|
|
|
|
|
|
|
|
button.edit-button {
|
2021-12-23 16:49:57 +00:00
|
|
|
background: #ffffff;
|
|
|
|
|
border: 1px solid #4d72fa;
|
2021-12-01 08:20:21 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 4px;
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #4d72fa;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.launch-button {
|
2021-12-23 16:49:57 +00:00
|
|
|
background: #4d72fa;
|
|
|
|
|
border: 1px solid #4d72fa;
|
2021-12-01 08:20:21 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 4px;
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #ffffff;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-20 13:05:37 +00:00
|
|
|
.app-title {
|
|
|
|
|
height: 20px;
|
|
|
|
|
-webkit-line-clamp: 1; /* number of lines to show */
|
2022-01-24 05:51:54 +00:00
|
|
|
line-clamp: 1;
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-15 02:37:05 +00:00
|
|
|
.template-library-modal {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
|
max-width: 90%;
|
|
|
|
|
height: 80%;
|
|
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.modal-body,
|
|
|
|
|
.modal-footer {
|
|
|
|
|
background-color: #ffffff;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-categories {
|
|
|
|
|
.list-group-item {
|
|
|
|
|
border: 0;
|
|
|
|
|
// padding-bottom: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item.active {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #edf1ff;
|
|
|
|
|
color: #4d72fa;
|
2022-01-15 02:37:05 +00:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-app-list {
|
|
|
|
|
.list-group-item {
|
|
|
|
|
border: 0;
|
|
|
|
|
// padding-bottom: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item.active {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #edf1ff;
|
2022-01-15 02:37:05 +00:00
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-display {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
h3.title {
|
|
|
|
|
font-weight: 600;
|
2022-01-27 10:51:38 +00:00
|
|
|
line-height: 17px;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.description {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 15px;
|
|
|
|
|
letter-spacing: -0.1px;
|
2022-01-27 10:51:38 +00:00
|
|
|
color: #8092ab;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img.template-image {
|
|
|
|
|
height: 75%;
|
|
|
|
|
width: 85%;
|
|
|
|
|
border: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-11 01:37:46 +00:00
|
|
|
.template-spinner{
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
margin: auto;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-15 02:37:05 +00:00
|
|
|
.row {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-list {
|
2022-01-20 08:15:46 +00:00
|
|
|
padding-top: 16px;
|
|
|
|
|
|
2022-01-15 02:37:05 +00:00
|
|
|
.template-search-box {
|
|
|
|
|
input {
|
2022-01-24 06:02:44 +00:00
|
|
|
border-radius: 5px !important;
|
|
|
|
|
}
|
|
|
|
|
.input-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
|
2022-01-24 06:02:44 +00:00
|
|
|
.input-icon {
|
|
|
|
|
.search-icon {
|
2022-01-27 10:51:38 +00:00
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-right: 0.5rem;
|
2022-01-24 06:02:44 +00:00
|
|
|
}
|
2022-01-27 10:51:38 +00:00
|
|
|
|
2022-01-24 06:02:44 +00:00
|
|
|
.clear-icon {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
margin-right: 0.5rem;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
}
|
2022-01-20 08:15:46 +00:00
|
|
|
|
|
|
|
|
.list-group-item.active {
|
|
|
|
|
color: $primary;
|
|
|
|
|
}
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-library-modal.dark-mode {
|
2022-01-27 10:51:38 +00:00
|
|
|
.template-modal-control-column,
|
|
|
|
|
.template-list-column,
|
|
|
|
|
.categories-column,
|
|
|
|
|
.modal-header {
|
|
|
|
|
border-color: #232e3c !important;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.modal-body,
|
|
|
|
|
.modal-footer,
|
|
|
|
|
.modal-header,
|
|
|
|
|
.modal-content {
|
2022-01-15 02:37:05 +00:00
|
|
|
color: white;
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #2b394a;
|
|
|
|
|
}
|
2022-01-15 02:37:05 +00:00
|
|
|
|
|
|
|
|
.template-categories {
|
|
|
|
|
.list-group-item {
|
|
|
|
|
color: white;
|
|
|
|
|
border: 0;
|
|
|
|
|
// padding-bottom: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item:hover {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #232e3c;
|
2022-01-15 02:37:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item.active {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #4d72fa;
|
2022-01-15 02:37:05 +00:00
|
|
|
color: white;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-app-list {
|
|
|
|
|
.list-group-item {
|
|
|
|
|
border: 0;
|
|
|
|
|
color: white;
|
|
|
|
|
// padding-bottom: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item:hover {
|
|
|
|
|
border: 0;
|
|
|
|
|
// color: red;
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #232e3c;
|
2022-01-15 02:37:05 +00:00
|
|
|
// padding-bottom: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item.active {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #4d72fa;
|
2022-01-15 02:37:05 +00:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-results-item {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #2b394a;
|
2022-01-15 02:37:05 +00:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.template-list {
|
|
|
|
|
.template-search-box {
|
|
|
|
|
input {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #2b394a;
|
|
|
|
|
border-color: #232e3c;
|
2022-01-15 02:37:05 +00:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-01 14:16:21 +00:00
|
|
|
.fx-button {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 11:05:11 +00:00
|
|
|
.fx-button:hover,
|
|
|
|
|
.fx-button.active {
|
2022-02-01 14:16:21 +00:00
|
|
|
font-weight: 600;
|
2022-02-04 11:05:11 +00:00
|
|
|
color: #4d72fa;
|
2022-02-01 14:16:21 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.unselectable {
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.theme-dark {
|
2021-12-07 12:07:55 +00:00
|
|
|
.accordion-button::after {
|
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg id='SvgjsSvg1001' width='288' height='288' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs'%3E%3Cdefs id='SvgjsDefs1002'%3E%3C/defs%3E%3Cg id='SvgjsG1008' transform='matrix(1,0,0,1,0,0)'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' fill='/fffff' viewBox='0 0 16 16' width='288' height='288'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='%23ffffff' class='color000 svgShape'%3E%3C/path%3E%3C/svg%3E%3C/g%3E%3C/svg%3E");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-check-input:not(:checked) {
|
2021-12-23 16:49:57 +00:00
|
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2390b5e2'/%3e%3c/svg%3e") !important;
|
2021-12-07 12:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inspector {
|
|
|
|
|
border: 1px solid $dark-background;
|
|
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.user-avatar-nav-item {
|
|
|
|
|
border-radius: 4px;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.homepage-body {
|
|
|
|
|
.app-list {
|
|
|
|
|
.app-card {
|
|
|
|
|
.app-creation-time {
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #61656f;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-creator {
|
|
|
|
|
color: #7c86a1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-card.highlight {
|
|
|
|
|
background-color: #2c405c;
|
|
|
|
|
|
|
|
|
|
button.edit-button {
|
2022-02-20 17:15:18 +00:00
|
|
|
background: transparent;
|
|
|
|
|
border: 1px solid #ffffff;
|
|
|
|
|
color: #ffffff;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.launch-button {
|
2021-12-23 16:49:57 +00:00
|
|
|
background: #4d72fa;
|
|
|
|
|
border: 1px solid #4d72fa;
|
|
|
|
|
color: #ffffff;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-title {
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
font-size: 16px;
|
2022-01-24 08:07:29 +00:00
|
|
|
font-weight: 400;
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
}
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
2022-02-07 16:40:58 +00:00
|
|
|
.layout-buttons {
|
|
|
|
|
svg {
|
|
|
|
|
filter: invert(89%) sepia(2%) saturate(127%) hue-rotate(175deg) brightness(99%) contrast(96%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2021-12-01 08:20:21 +00:00
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.pagination {
|
|
|
|
|
.page-item.active {
|
|
|
|
|
a.page-link {
|
2021-12-23 16:49:57 +00:00
|
|
|
background-color: #4d72fa;
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-22 17:08:34 +00:00
|
|
|
|
2022-02-04 11:05:11 +00:00
|
|
|
.datasource-picker,
|
|
|
|
|
.stripe-operation-options {
|
|
|
|
|
.select-search,
|
|
|
|
|
.select-search-dark,
|
|
|
|
|
.select-search__value input,
|
|
|
|
|
.select-search-dark input {
|
|
|
|
|
width: 224px !important;
|
|
|
|
|
height: 32px !important;
|
|
|
|
|
border-radius: $border-radius !important;
|
2022-01-20 04:41:01 +00:00
|
|
|
}
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search {
|
2021-04-30 06:31:32 +00:00
|
|
|
width: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
box-sizing: border-box;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search *,
|
|
|
|
|
.select-search *::after,
|
|
|
|
|
.select-search *::before {
|
2021-04-30 06:31:32 +00:00
|
|
|
box-sizing: inherit;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Value wrapper
|
|
|
|
|
*/
|
|
|
|
|
.select-search__value {
|
2021-04-30 06:31:32 +00:00
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__value::after {
|
2021-12-23 16:49:57 +00:00
|
|
|
content: "";
|
2021-04-30 06:31:32 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(50% - 9px);
|
|
|
|
|
right: 19px;
|
|
|
|
|
width: 11px;
|
|
|
|
|
height: 11px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Input
|
|
|
|
|
*/
|
|
|
|
|
.select-search__input {
|
2021-04-30 06:31:32 +00:00
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.4375rem 0.75rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.4285714;
|
|
|
|
|
color: #232e3c;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
border: 1px solid #dadcde;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
2022-02-02 16:59:57 +00:00
|
|
|
// border-radius: 0;
|
2022-02-04 11:05:11 +00:00
|
|
|
border-radius: $border-radius !important;
|
2021-04-30 06:31:32 +00:00
|
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__input::-webkit-search-decoration,
|
|
|
|
|
.select-search__input::-webkit-search-cancel-button,
|
|
|
|
|
.select-search__input::-webkit-search-results-button,
|
|
|
|
|
.select-search__input::-webkit-search-results-decoration {
|
2021-04-30 06:31:32 +00:00
|
|
|
-webkit-appearance: none;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__input:not([readonly]):focus {
|
2021-04-30 06:31:32 +00:00
|
|
|
cursor: initial;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Options wrapper
|
|
|
|
|
*/
|
|
|
|
|
.select-search__select {
|
2021-04-30 06:31:32 +00:00
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Options
|
|
|
|
|
*/
|
|
|
|
|
.select-search__options {
|
2021-04-30 06:31:32 +00:00
|
|
|
list-style: none;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Option row
|
|
|
|
|
*/
|
|
|
|
|
.select-search__row:not(:first-child) {
|
2021-04-30 06:31:32 +00:00
|
|
|
border-top: 1px solid #eee;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Option
|
|
|
|
|
*/
|
|
|
|
|
.select-search__option,
|
|
|
|
|
.select-search__not-found {
|
2021-04-30 06:31:32 +00:00
|
|
|
display: block;
|
|
|
|
|
height: 36px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-04-30 06:31:32 +00:00
|
|
|
font-size: 14px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
cursor: pointer;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search--multiple .select-search__option {
|
2021-04-30 06:31:32 +00:00
|
|
|
height: 48px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__option.is-highlighted,
|
|
|
|
|
.select-search__option:not(.is-selected):hover {
|
2021-04-30 06:31:32 +00:00
|
|
|
background: rgba(47, 204, 139, 0.1);
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__option.is-highlighted.is-selected,
|
|
|
|
|
.select-search__option.is-selected:hover {
|
2021-04-30 06:31:32 +00:00
|
|
|
background: #2eb378;
|
|
|
|
|
color: #fff;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Group
|
|
|
|
|
*/
|
|
|
|
|
.select-search__group-header {
|
2021-04-30 06:31:32 +00:00
|
|
|
font-size: 10px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #eee;
|
|
|
|
|
padding: 8px 16px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* States
|
|
|
|
|
*/
|
|
|
|
|
.select-search.is-disabled {
|
2021-04-30 06:31:32 +00:00
|
|
|
opacity: 0.5;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search.is-loading .select-search__value::after {
|
2021-04-30 06:31:32 +00:00
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath fill='%232F2D37' d='M25,5A20.14,20.14,0,0,1,45,22.88a2.51,2.51,0,0,0,2.49,2.26h0A2.52,2.52,0,0,0,50,22.33a25.14,25.14,0,0,0-50,0,2.52,2.52,0,0,0,2.5,2.81h0A2.51,2.51,0,0,0,5,22.88,20.14,20.14,0,0,1,25,5Z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
|
|
|
|
|
background-size: 11px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search:not(.is-disabled) .select-search__input {
|
2021-04-30 06:31:32 +00:00
|
|
|
cursor: pointer;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Modifiers
|
|
|
|
|
*/
|
|
|
|
|
.select-search--multiple {
|
2021-04-30 06:31:32 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: hidden;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search:not(.is-loading):not(.select-search--multiple)
|
|
|
|
|
.select-search__value::after {
|
2021-04-30 06:31:32 +00:00
|
|
|
transform: rotate(45deg);
|
|
|
|
|
border-right: 1px solid #000;
|
|
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
|
pointer-events: none;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search--multiple .select-search__input {
|
2021-04-30 06:31:32 +00:00
|
|
|
cursor: initial;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search--multiple .select-search__input {
|
2021-04-30 06:31:32 +00:00
|
|
|
border-radius: 3px 3px 0 0;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search--multiple:not(.select-search--search) .select-search__input {
|
2021-04-30 06:31:32 +00:00
|
|
|
cursor: default;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search:not(.select-search--multiple) .select-search__input:hover {
|
2021-04-30 06:31:32 +00:00
|
|
|
border-color: #2fcc8b;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search:not(.select-search--multiple) .select-search__select {
|
2021-04-30 06:31:32 +00:00
|
|
|
position: absolute;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 360px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search--multiple .select-search__select {
|
2021-04-30 06:31:32 +00:00
|
|
|
position: relative;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 260px;
|
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
|
border-radius: 0 0 3px 3px;
|
2021-04-08 13:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__not-found {
|
2021-04-30 06:31:32 +00:00
|
|
|
height: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #888;
|
2021-04-09 05:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-20 04:41:01 +00:00
|
|
|
/**
|
2022-01-24 05:51:54 +00:00
|
|
|
* Select Search Dark Mode
|
2022-01-20 04:41:01 +00:00
|
|
|
*/
|
|
|
|
|
.select-search-dark {
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark *,
|
|
|
|
|
.select-search-dark *::after,
|
|
|
|
|
.select-search-dark *::before {
|
|
|
|
|
box-sizing: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Value wrapper
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__value {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark__value::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(50% - 4px);
|
|
|
|
|
right: 13px;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Input
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__input {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.4375rem 0.75rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.4285714;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #2b3547;
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
border: 1px solid #232e3c;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark__input::-webkit-search-decoration,
|
|
|
|
|
.select-search-dark__input::-webkit-search-cancel-button,
|
|
|
|
|
.select-search-dark__input::-webkit-search-results-button,
|
|
|
|
|
.select-search-dark__input::-webkit-search-results-decoration {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark__input:not([readonly]):focus {
|
|
|
|
|
cursor: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Options
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__options {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Option row
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__row:not(:first-child) {
|
|
|
|
|
border-top: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Option
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__option,
|
|
|
|
|
.select-search-dark__not-found {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 36px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 16px;
|
2022-02-02 16:59:57 +00:00
|
|
|
background-color: $dark-background !important;
|
|
|
|
|
color: #fff !important;
|
2022-01-20 04:41:01 +00:00
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 0;
|
2022-02-02 16:59:57 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
2022-02-04 11:05:11 +00:00
|
|
|
background-color: #2b3546 !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
2022-01-20 04:41:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark--multiple .select-search-dark__option {
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Group
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark__group-header {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #eee;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* States
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark.is-disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark.is-loading .select-search-dark__value::after {
|
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath fill='%232F2D37' d='M25,5A20.14,20.14,0,0,1,45,22.88a2.51,2.51,0,0,0,2.49,2.26h0A2.52,2.52,0,0,0,50,22.33a25.14,25.14,0,0,0-50,0,2.52,2.52,0,0,0,2.5,2.81h0A2.51,2.51,0,0,0,5,22.88,20.14,20.14,0,0,1,25,5Z'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
|
|
|
|
|
background-size: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark:not(.is-disabled) .select-search-dark__input {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Modifiers
|
|
|
|
|
*/
|
|
|
|
|
.select-search-dark--multiple {
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search-dark:not(.is-loading):not(.select-search-dark--multiple)
|
|
|
|
|
.select-search-dark__value::after {
|
2022-01-20 04:41:01 +00:00
|
|
|
transform: rotate(45deg);
|
|
|
|
|
border-right: 1px solid #000;
|
|
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark--multiple .select-search-dark__input {
|
|
|
|
|
cursor: initial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark--multiple .select-search-dark__input {
|
|
|
|
|
border-radius: 3px 3px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search-dark--multiple:not(.select-search-dark--search)
|
|
|
|
|
.select-search-dark__input {
|
2022-01-20 04:41:01 +00:00
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search-dark:not(.select-search-dark--multiple)
|
|
|
|
|
.select-search-dark__input:hover {
|
2022-01-20 04:41:01 +00:00
|
|
|
border-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search-dark:not(.select-search-dark--multiple)
|
|
|
|
|
.select-search-dark__select {
|
2022-01-20 04:41:01 +00:00
|
|
|
position: absolute;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 360px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark--multiple .select-search-dark__select {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 260px;
|
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search-dark__not-found {
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #888;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 06:50:59 +00:00
|
|
|
.jet-table-footer {
|
2021-05-02 13:45:13 +00:00
|
|
|
.table-footer {
|
2021-04-30 06:31:32 +00:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
2021-04-09 06:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-09 12:00:06 +00:00
|
|
|
.jet-data-table-header {
|
2021-04-30 06:31:32 +00:00
|
|
|
max-height: 50px;
|
2021-04-09 12:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-09 05:22:26 +00:00
|
|
|
.jet-data-table {
|
2021-06-22 14:33:13 +00:00
|
|
|
thead {
|
2021-05-25 19:06:52 +00:00
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.table-row:hover,
|
2021-10-07 07:43:53 +00:00
|
|
|
.table-row:focus {
|
2021-04-30 06:31:32 +00:00
|
|
|
background: rgba(lightBlue, 0.25);
|
|
|
|
|
}
|
2021-04-09 06:50:59 +00:00
|
|
|
|
2021-10-05 14:06:30 +00:00
|
|
|
.table-row.selected {
|
|
|
|
|
--tblr-table-accent-bg: rgba(lightBlue, 0.25);
|
|
|
|
|
background: rgba(lightBlue, 0.25);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
td {
|
2021-09-30 03:13:22 +00:00
|
|
|
min-height: 40px;
|
2021-08-02 14:32:23 +00:00
|
|
|
overflow-x: initial;
|
2021-09-01 04:43:14 +00:00
|
|
|
margin: auto;
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-05-11 14:28:29 +00:00
|
|
|
.text-container {
|
2021-09-27 12:57:06 +00:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
outline: none;
|
2021-05-11 14:28:29 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-22 02:19:51 +00:00
|
|
|
td.spacious {
|
|
|
|
|
min-height: 47px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td.compact {
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 12:57:06 +00:00
|
|
|
.has-dropdown,
|
|
|
|
|
.has-multiselect,
|
|
|
|
|
.has-text,
|
|
|
|
|
.has-datepicker,
|
|
|
|
|
.has-actions {
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-text,
|
|
|
|
|
.has-actions {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 11:24:55 +00:00
|
|
|
td {
|
2021-09-22 05:13:12 +00:00
|
|
|
.text-container:focus-visible,
|
|
|
|
|
.text-container:focus,
|
|
|
|
|
.text-container:focus-within,
|
|
|
|
|
.text-container:hover {
|
2021-05-10 11:24:55 +00:00
|
|
|
outline: none;
|
2021-05-11 14:28:29 +00:00
|
|
|
height: 100%;
|
2021-05-10 11:24:55 +00:00
|
|
|
}
|
2021-09-30 03:13:22 +00:00
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
display: flex !important;
|
2021-09-30 03:13:22 +00:00
|
|
|
|
|
|
|
|
.td-container {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
margin-bottom: auto;
|
|
|
|
|
}
|
2021-05-10 11:24:55 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
td {
|
2021-05-12 08:30:50 +00:00
|
|
|
.text-container:focus {
|
2021-05-18 13:29:20 +00:00
|
|
|
position: sticky;
|
|
|
|
|
height: 120px;
|
2021-05-10 10:52:35 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
|
margin-top: -10px;
|
|
|
|
|
padding: 10px;
|
2021-05-10 11:24:55 +00:00
|
|
|
margin-left: -9px;
|
2021-05-10 10:52:35 +00:00
|
|
|
background: white;
|
2022-02-02 02:37:02 +00:00
|
|
|
box-shadow: rgba(15, 15, 15, 0/05) 0px 0px 0px 1px,
|
|
|
|
|
rgba(15, 15, 15, 0.1) 0px 3px 6px, rgba(15, 15, 15, 0.2) 0px 9px 24px;
|
2021-05-10 10:52:35 +00:00
|
|
|
white-space: initial;
|
|
|
|
|
}
|
2021-05-10 11:24:55 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.text-container:focus-visible,
|
|
|
|
|
.text-container:focus,
|
|
|
|
|
.text-container:focus-within,
|
|
|
|
|
.text-container:hover {
|
2021-05-10 11:24:55 +00:00
|
|
|
outline: none;
|
|
|
|
|
}
|
2021-05-10 10:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
td {
|
2021-05-10 10:52:35 +00:00
|
|
|
.text-container::-webkit-scrollbar {
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
2021-05-10 10:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td::-webkit-scrollbar {
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
2022-02-02 02:37:02 +00:00
|
|
|
.th {
|
2022-01-28 06:46:38 +00:00
|
|
|
white-space: normal;
|
|
|
|
|
}
|
2021-05-10 10:19:47 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
th:after {
|
2021-12-23 16:49:57 +00:00
|
|
|
content: " ";
|
2021-04-30 06:31:32 +00:00
|
|
|
position: relative;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
2021-04-09 05:22:26 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.sort-desc:after {
|
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
2022-02-01 01:32:56 +00:00
|
|
|
border-top: 5px solid #767676;
|
2021-04-30 06:31:32 +00:00
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
|
left: 6px;
|
|
|
|
|
top: 8px;
|
|
|
|
|
}
|
2021-04-09 05:22:26 +00:00
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.sort-asc:after {
|
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
|
border-top: 0px solid transparent;
|
2022-02-01 01:32:56 +00:00
|
|
|
border-bottom: 5px solid #767676;
|
2021-04-30 06:31:32 +00:00
|
|
|
left: 6px;
|
|
|
|
|
bottom: 8px;
|
|
|
|
|
}
|
2021-05-02 14:23:03 +00:00
|
|
|
}
|
|
|
|
|
|
2021-05-03 08:10:23 +00:00
|
|
|
.jet-data-table::-webkit-scrollbar {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-05-03 08:10:23 +00:00
|
|
|
|
2021-12-01 12:44:35 +00:00
|
|
|
.jet-data-table::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-02 14:23:03 +00:00
|
|
|
.jet-data-table:hover {
|
2021-12-01 12:44:35 +00:00
|
|
|
overflow-x: overlay;
|
|
|
|
|
overflow-y: overlay;
|
2021-05-02 14:23:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-data-table {
|
2021-09-22 05:13:12 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
.form-check {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.form-check-inline {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
2021-09-01 04:43:14 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.table-row {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2021-05-03 08:10:23 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
thead {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0px;
|
|
|
|
|
display: inline-block;
|
2021-05-02 14:37:43 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
tr {
|
|
|
|
|
border-top: none;
|
2021-05-02 14:23:03 +00:00
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
|
|
|
|
tbody {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2021-04-10 04:33:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
2021-12-01 10:42:32 +00:00
|
|
|
--tblr-btn-color: 77, 114, 250;
|
2021-12-23 16:49:57 +00:00
|
|
|
--tblr-btn-color-darker: 77, 94, 240;
|
2021-04-30 06:31:32 +00:00
|
|
|
border-color: none;
|
2021-04-10 17:22:11 +00:00
|
|
|
}
|
2021-04-11 02:58:47 +00:00
|
|
|
|
|
|
|
|
.form-check-input:checked {
|
2021-12-04 17:41:25 +00:00
|
|
|
background-color: $primary;
|
2021-04-30 06:31:32 +00:00
|
|
|
border-color: rgba(101, 109, 119, 0.24);
|
2021-04-11 02:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.btn:focus,
|
|
|
|
|
.btn:active,
|
|
|
|
|
.form-check-input:focus,
|
|
|
|
|
.form-check-input:active,
|
|
|
|
|
.form-control:focus,
|
|
|
|
|
th:focus,
|
|
|
|
|
tr:focus {
|
|
|
|
|
outline: none !important;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2021-04-11 06:38:06 +00:00
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
// .jet-container {
|
|
|
|
|
// // width: 100%;
|
|
|
|
|
// }
|
2021-04-15 12:15:58 +00:00
|
|
|
|
2021-04-28 06:25:18 +00:00
|
|
|
.select-search__option {
|
2021-04-30 06:31:32 +00:00
|
|
|
color: rgb(90, 89, 89);
|
2021-04-28 06:25:18 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-15 12:15:58 +00:00
|
|
|
.select-search__option.is-selected {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: rgba(176, 176, 176, 0.07);
|
2021-05-13 05:24:25 +00:00
|
|
|
color: #4d4d4d;
|
2021-04-15 12:15:58 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.select-search__option.is-highlighted.is-selected,
|
|
|
|
|
.select-search__option.is-selected:hover {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: rgba(66, 153, 225, 0.1);
|
2021-04-30 06:31:32 +00:00
|
|
|
color: rgb(44, 43, 43);
|
2021-04-15 12:15:58 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.select-search__option.is-highlighted,
|
|
|
|
|
.select-search__option:hover {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: rgba(66, 153, 225, 0.1);
|
2021-04-16 16:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__options {
|
2021-04-30 06:31:32 +00:00
|
|
|
margin-left: -33px;
|
2021-04-16 16:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.select-search__option.is-highlighted,
|
|
|
|
|
.select-search__option:not(.is-selected):hover {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: rgba(66, 153, 225, 0.1);
|
2021-04-16 16:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search:not(.select-search--multiple) .select-search__input:hover {
|
2021-09-22 05:13:12 +00:00
|
|
|
border-color: rgba(66, 153, 225, 0.1);
|
2021-04-16 16:45:10 +00:00
|
|
|
}
|
2021-04-18 16:44:03 +00:00
|
|
|
|
|
|
|
|
.DateInput_input {
|
2021-04-30 06:31:32 +00:00
|
|
|
font-weight: 300;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 4px 7px 2px;
|
2021-05-02 07:10:51 +00:00
|
|
|
padding: 4px 7px 2px;
|
2021-09-22 05:13:12 +00:00
|
|
|
width: 100px !important;
|
2021-05-02 07:10:51 +00:00
|
|
|
margin-left: 10px;
|
2021-04-21 06:07:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-data-table {
|
2021-04-30 06:31:32 +00:00
|
|
|
display: inline-block;
|
2021-05-10 07:59:46 +00:00
|
|
|
height: 100%;
|
2021-04-30 06:31:32 +00:00
|
|
|
|
2021-05-09 05:54:11 +00:00
|
|
|
thead {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search:not(.is-loading):not(.select-search--multiple)
|
|
|
|
|
.select-search__value::after {
|
2021-05-09 07:26:54 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.custom-select {
|
2021-05-09 07:26:54 +00:00
|
|
|
.select-search:not(.select-search--multiple) .select-search__select {
|
|
|
|
|
top: 0px;
|
2021-05-09 10:51:26 +00:00
|
|
|
border: solid #9fa0a1 1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.tags {
|
2021-05-11 09:25:06 +00:00
|
|
|
width: 100%;
|
|
|
|
|
min-height: 20px;
|
2021-05-11 12:42:22 +00:00
|
|
|
|
2021-05-09 10:51:26 +00:00
|
|
|
.add-tag-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.tag {
|
2021-05-09 10:51:26 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 0.85rem;
|
2021-09-22 05:13:12 +00:00
|
|
|
letter-spacing: 0.04em;
|
2021-05-09 10:51:26 +00:00
|
|
|
text-transform: none;
|
|
|
|
|
|
|
|
|
|
.remove-tag-button {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
margin-right: -7px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control-plaintext {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.form-control-plaintext:hover,
|
|
|
|
|
.form-control-plaintext:focus-visible {
|
2021-05-09 10:51:26 +00:00
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.tags:hover {
|
2021-05-09 10:51:26 +00:00
|
|
|
.add-tag-button {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag:hover {
|
|
|
|
|
.remove-tag-button {
|
|
|
|
|
display: inline-flex;
|
2021-05-09 07:26:54 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
.th,
|
|
|
|
|
.td {
|
|
|
|
|
.resizer {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
transform: translateX(50%);
|
|
|
|
|
z-index: 1;
|
|
|
|
|
touch-action: none;
|
|
|
|
|
|
|
|
|
|
&.isResizing {
|
|
|
|
|
background: rgb(179, 173, 173);
|
2021-04-21 06:07:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-21 13:47:19 +00:00
|
|
|
|
|
|
|
|
.no-components-box {
|
2021-05-01 09:01:15 +00:00
|
|
|
border: 1px dashed #3e525b;
|
2021-04-22 07:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control-plaintext:focus-visible {
|
2021-04-30 06:31:32 +00:00
|
|
|
outline: none;
|
|
|
|
|
outline-width: thin;
|
|
|
|
|
outline-style: solid;
|
2021-12-04 17:41:25 +00:00
|
|
|
outline-color: $primary;
|
2021-04-29 16:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control-plaintext:hover {
|
2021-04-30 06:31:32 +00:00
|
|
|
outline: none;
|
|
|
|
|
outline-width: thin;
|
|
|
|
|
outline-style: solid;
|
2021-09-22 05:13:12 +00:00
|
|
|
outline-color: rgba(66, 153, 225, 0.8);
|
2021-04-22 07:03:38 +00:00
|
|
|
}
|
2021-04-24 07:54:36 +00:00
|
|
|
|
2021-04-24 16:52:05 +00:00
|
|
|
.select-search__input:focus-visible {
|
2021-04-30 06:31:32 +00:00
|
|
|
outline: none;
|
|
|
|
|
outline-color: #4ac4d6;
|
2021-04-24 16:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-24 07:54:36 +00:00
|
|
|
.form-control-plaintext {
|
2021-04-30 06:31:32 +00:00
|
|
|
padding: 5px;
|
2021-04-24 07:54:36 +00:00
|
|
|
}
|
2021-04-25 07:51:48 +00:00
|
|
|
|
|
|
|
|
.table-filters {
|
2021-04-30 06:31:32 +00:00
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 80%;
|
|
|
|
|
max-width: 700px;
|
|
|
|
|
margin-right: 10%;
|
|
|
|
|
right: 0;
|
|
|
|
|
height: 300px;
|
|
|
|
|
z-index: 100;
|
2021-04-25 07:51:48 +00:00
|
|
|
}
|
2021-04-25 18:08:23 +00:00
|
|
|
|
|
|
|
|
.code-builder {
|
2021-04-30 06:31:32 +00:00
|
|
|
border: solid 1px #dadcde;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
padding-top: 4px;
|
|
|
|
|
|
|
|
|
|
.variables-dropdown {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 400px;
|
|
|
|
|
z-index: 200;
|
2021-04-25 18:08:23 +00:00
|
|
|
border: solid 1px #dadcde;
|
2021-04-30 06:31:32 +00:00
|
|
|
|
|
|
|
|
.group-header {
|
|
|
|
|
background: #f4f6fa;
|
2021-04-25 18:08:23 +00:00
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-25 18:08:23 +00:00
|
|
|
}
|
2021-04-26 07:13:20 +00:00
|
|
|
|
|
|
|
|
.__react_component_tooltip {
|
2021-04-30 06:31:32 +00:00
|
|
|
z-index: 10000;
|
2021-04-27 07:06:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__value::after {
|
2021-04-30 06:31:32 +00:00
|
|
|
top: calc(50% - 2px);
|
|
|
|
|
right: 15px;
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 5px;
|
2021-04-27 12:07:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: rgba(66, 153, 225, 0.7);
|
2021-04-28 18:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popover-header {
|
2021-04-30 06:31:32 +00:00
|
|
|
background-color: #f4f6fa;
|
2021-04-28 18:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.popover-body {
|
2021-04-30 06:31:32 +00:00
|
|
|
.form-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2021-04-28 18:01:52 +00:00
|
|
|
}
|
2021-04-29 16:56:33 +00:00
|
|
|
|
2022-01-20 13:05:37 +00:00
|
|
|
/**
|
|
|
|
|
* Home page app menu
|
|
|
|
|
*/
|
|
|
|
|
#popover-app-menu {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
width: 150px;
|
|
|
|
|
box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.25);
|
|
|
|
|
|
|
|
|
|
.popover-body {
|
|
|
|
|
padding: 16px 12px 0px 12px;
|
|
|
|
|
|
|
|
|
|
.field {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
|
|
|
|
&__danger {
|
2022-01-27 10:51:38 +00:00
|
|
|
color: #ff6666;
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
2021-04-30 08:48:29 +00:00
|
|
|
.input-icon {
|
2021-09-22 05:13:12 +00:00
|
|
|
.input-icon-addon {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-04-29 16:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.input-icon:hover {
|
|
|
|
|
.input-icon-addon {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2021-04-30 08:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.input-icon:focus {
|
|
|
|
|
.input-icon-addon {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2021-04-30 06:31:32 +00:00
|
|
|
}
|
2021-04-30 17:36:42 +00:00
|
|
|
|
|
|
|
|
.sub-section {
|
2021-09-22 05:13:12 +00:00
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
2021-05-01 09:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #3e525b !important;
|
2021-05-01 09:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #3e525b;
|
2021-12-01 08:20:21 +00:00
|
|
|
overflow-y: hidden;
|
2021-05-01 09:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
2021-05-02 05:42:19 +00:00
|
|
|
.RichEditor-root {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #ddd;
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Georgia", serif;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-editor {
|
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
|
cursor: text;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-editor .public-DraftEditorPlaceholder-root,
|
|
|
|
|
.RichEditor-editor .public-DraftEditor-content {
|
|
|
|
|
margin: 0 -15px -15px;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-editor .public-DraftEditor-content {
|
|
|
|
|
min-height: 100px;
|
2021-10-23 12:20:53 +00:00
|
|
|
overflow-y: scroll;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-hidePlaceholder .public-DraftEditorPlaceholder-root {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-editor .RichEditor-blockquote {
|
|
|
|
|
border-left: 5px solid #eee;
|
|
|
|
|
color: #666;
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Hoefler Text", "Georgia", serif;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-style: italic;
|
|
|
|
|
margin: 16px 0;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-editor .public-DraftStyleDefault-pre {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Inconsolata", "Menlo", "Consolas", monospace;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 16px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-controls {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Helvetica", sans-serif;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 14px;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.dropmenu {
|
2021-10-24 15:13:55 +00:00
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.dropdownbtn {
|
2021-10-24 15:13:55 +00:00
|
|
|
color: #999;
|
2021-12-23 16:49:57 +00:00
|
|
|
background: none;
|
2021-10-24 15:13:55 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
outline: none;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-content {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 100%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
box-shadow: 0 2px 6px 2px rgba(47, 54, 59, 0.15);
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 3px 0px;
|
2021-12-23 16:49:57 +00:00
|
|
|
}
|
2021-10-24 15:13:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
.dropmenu .dropdown-content a:hover {
|
2021-10-24 15:13:55 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropmenu:hover {
|
2021-12-23 16:49:57 +00:00
|
|
|
.dropdownbtn {
|
2021-10-24 15:13:55 +00:00
|
|
|
color: #5890ff;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
|
|
|
|
|
.dropdown-content {
|
2021-10-24 15:13:55 +00:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-styleButton {
|
|
|
|
|
color: #999;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
padding: 2px 0;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.RichEditor-activeButton {
|
|
|
|
|
color: #5890ff;
|
|
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-05-02 07:10:51 +00:00
|
|
|
.transformation-editor {
|
2021-09-22 05:13:12 +00:00
|
|
|
.CodeMirror {
|
|
|
|
|
min-height: 70px;
|
|
|
|
|
}
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.chart-data-input {
|
2021-05-15 12:41:57 +00:00
|
|
|
.CodeMirror {
|
|
|
|
|
min-height: 370px;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
.code-hinter {
|
|
|
|
|
min-height: 370px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-16 05:26:31 +00:00
|
|
|
.map-location-input {
|
|
|
|
|
.CodeMirror {
|
|
|
|
|
min-height: 120px;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
.code-hinter {
|
|
|
|
|
min-height: 120px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-02 07:10:51 +00:00
|
|
|
.rdt {
|
2021-09-22 05:13:12 +00:00
|
|
|
.form-control {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateInput_input__focused {
|
2021-12-04 17:41:25 +00:00
|
|
|
border-bottom: 2px solid $primary;
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CalendarDay__selected,
|
|
|
|
|
.CalendarDay__selected:active,
|
|
|
|
|
.CalendarDay__selected:hover {
|
2021-12-04 17:41:25 +00:00
|
|
|
background: $primary;
|
|
|
|
|
border: 1px double $primary;
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CalendarDay__selected_span {
|
2021-12-04 17:41:25 +00:00
|
|
|
background: $primary;
|
|
|
|
|
border: $primary;
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CalendarDay__selected_span:active,
|
|
|
|
|
.CalendarDay__selected_span:hover {
|
2021-12-04 17:41:25 +00:00
|
|
|
background: $primary;
|
|
|
|
|
border: 1px double $primary;
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff;
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CalendarDay__hovered_span:active,
|
|
|
|
|
.CalendarDay__hovered_span:hover {
|
2021-12-04 17:41:25 +00:00
|
|
|
background: $primary;
|
|
|
|
|
border: 1px double $primary;
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff;
|
2021-05-02 07:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CalendarDay__hovered_span {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: #83b8e7;
|
|
|
|
|
border: 1px double #83b8e7;
|
|
|
|
|
color: #fff;
|
2021-05-02 14:23:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-responsive {
|
2021-09-22 05:13:12 +00:00
|
|
|
margin-bottom: 0rem;
|
2021-05-03 08:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
2021-08-21 04:42:04 +00:00
|
|
|
.code-hinter::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-17 07:47:34 +00:00
|
|
|
.codehinter-query-editor-input {
|
|
|
|
|
.CodeMirror {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-05-17 07:47:34 +00:00
|
|
|
color: #263136;
|
2021-05-22 05:14:33 +00:00
|
|
|
overflow: hidden;
|
2021-09-22 05:13:12 +00:00
|
|
|
height: 50px !important;
|
2021-05-22 05:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-vscrollbar {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-focused {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
height: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.CodeMirror-scroll {
|
2021-05-22 05:14:33 +00:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2021-05-29 17:14:17 +00:00
|
|
|
width: 100%;
|
2021-05-17 07:47:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-05-03 12:37:31 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.field {
|
|
|
|
|
.CodeMirror-scroll {
|
2021-05-22 05:19:17 +00:00
|
|
|
position: static;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-03 08:10:23 +00:00
|
|
|
.code-hinter {
|
2021-09-22 05:13:12 +00:00
|
|
|
height: 36px;
|
2021-05-03 08:10:23 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.form-control {
|
|
|
|
|
.CodeMirror {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-09-22 05:13:12 +00:00
|
|
|
height: 50px !important;
|
|
|
|
|
max-height: 300px;
|
2021-05-03 11:26:31 +00:00
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-03 11:26:31 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CodeMirror-vscrollbar,
|
|
|
|
|
.CodeMirror-hscrollbar {
|
|
|
|
|
background: transparent;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
2021-05-03 11:26:31 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CodeMirror-scroll {
|
|
|
|
|
overflow: hidden !important;
|
2022-02-14 13:33:47 +00:00
|
|
|
position: static;
|
|
|
|
|
width: 100%;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-03 08:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-hints {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 0.9rem;
|
|
|
|
|
padding: 0px;
|
2021-12-10 03:09:23 +00:00
|
|
|
z-index: $hints-z-index;
|
2021-05-03 08:10:23 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
li.CodeMirror-hint-active {
|
2021-12-04 17:41:25 +00:00
|
|
|
background: $primary;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-03 08:10:23 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.CodeMirror-hint {
|
|
|
|
|
padding: 4px;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
}
|
2021-05-03 08:10:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cm-matchhighlight {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #4299e1 !important;
|
|
|
|
|
background: rgba(66, 153, 225, 0.1) !important;
|
2021-05-03 12:27:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #3e525b;
|
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transformation-editor {
|
|
|
|
|
.CodeMirror {
|
|
|
|
|
min-height: 220px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
2021-05-05 07:06:07 +00:00
|
|
|
margin: 1rem 0;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-06-22 14:33:13 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.query-hinter {
|
|
|
|
|
min-height: 150px;
|
|
|
|
|
}
|
2021-05-09 04:25:17 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.codehinter-default-input {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2022-02-07 12:43:28 +00:00
|
|
|
padding: 0.0475rem 0rem !important;
|
2021-05-09 04:25:17 +00:00
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 0.875rem;
|
2021-05-09 04:25:17 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
color: #232e3c;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
border: 1px solid #dadcde;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
border-radius: 4px;
|
2021-09-22 05:13:12 +00:00
|
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2021-05-09 04:25:17 +00:00
|
|
|
height: 30px;
|
2021-06-05 13:26:50 +00:00
|
|
|
|
|
|
|
|
.CodeMirror {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-06-05 13:26:50 +00:00
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-09 05:25:00 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.codehinter-query-editor-input {
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Roboto", sans-serif;
|
2021-12-15 04:23:17 +00:00
|
|
|
padding: 0.1775rem 0rem;
|
2021-05-09 05:25:00 +00:00
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
2021-09-22 05:13:12 +00:00
|
|
|
font-size: 0.875rem;
|
2021-05-09 05:25:00 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
color: #232e3c;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
background-clip: padding-box;
|
|
|
|
|
border: 1px solid #dadcde;
|
2022-02-02 16:59:57 +00:00
|
|
|
border-radius: $border-radius;
|
2021-05-09 05:25:00 +00:00
|
|
|
appearance: none;
|
2021-09-22 05:13:12 +00:00
|
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
2022-02-02 16:59:57 +00:00
|
|
|
height: 28px !important;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-09 18:06:11 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.modal-component {
|
|
|
|
|
margin-top: 150px;
|
2021-05-09 18:06:11 +00:00
|
|
|
.modal-body {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-05-10 09:28:44 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.draggable-box {
|
2021-05-10 09:28:44 +00:00
|
|
|
.config-handle {
|
|
|
|
|
top: -20px;
|
|
|
|
|
position: fixed;
|
2021-11-16 11:44:09 +00:00
|
|
|
max-height: 10px;
|
2022-01-14 08:27:31 +00:00
|
|
|
z-index: 100;
|
2022-01-10 03:29:39 +00:00
|
|
|
min-width: 108px;
|
2021-05-10 10:19:47 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.handle-content {
|
|
|
|
|
cursor: move;
|
2022-02-04 15:24:41 +00:00
|
|
|
color: $white;
|
|
|
|
|
background: $primary;
|
2022-01-27 10:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
2021-05-10 09:28:44 +00:00
|
|
|
.badge {
|
|
|
|
|
font-size: 9px;
|
2022-02-04 15:24:41 +00:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
|
|
|
|
|
|
.delete-part{
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.delete-part::before {
|
|
|
|
|
height: 12px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 2px;
|
|
|
|
|
background-color: rgba(255,255,255,0.8);
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
content: '';
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2021-05-10 09:28:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 15:24:41 +00:00
|
|
|
.draggable-box:hover {
|
|
|
|
|
z-index: 3 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-10 13:44:58 +00:00
|
|
|
.modal-content {
|
|
|
|
|
.config-handle {
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
|
font-size: 9px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.config-handle {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2021-05-28 13:25:52 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.apps-table {
|
2021-05-10 19:24:23 +00:00
|
|
|
.app-title {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
2021-05-11 09:19:21 +00:00
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
--tblr-gutter-x: 0rem;
|
|
|
|
|
}
|
2021-05-10 19:42:31 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.home-page,
|
|
|
|
|
.org-users-page {
|
|
|
|
|
.navbar .navbar-nav .active > .nav-link,
|
|
|
|
|
.navbar .navbar-nav .nav-link.active,
|
|
|
|
|
.navbar .navbar-nav .nav-link.show,
|
|
|
|
|
.navbar .navbar-nav .show > .nav-link {
|
2021-05-25 13:18:17 +00:00
|
|
|
color: rgba(35, 46, 60, 0.7);
|
2021-05-10 19:42:31 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.nav-item {
|
2021-05-10 19:42:31 +00:00
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 10:31:08 +00:00
|
|
|
img.svg-icon {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img.svg-icon:hover {
|
|
|
|
|
background-color: rgba(224, 214, 214, 0.507);
|
|
|
|
|
}
|
2021-05-11 12:42:22 +00:00
|
|
|
}
|
2021-05-13 17:55:39 +00:00
|
|
|
|
|
|
|
|
.CodeMirror-placeholder {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #9e9e9e !important;
|
|
|
|
|
font-size: 0.7rem !important;
|
|
|
|
|
margin-top: 2px !important;
|
|
|
|
|
font-size: 12px !important;
|
2021-08-30 11:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-code {
|
|
|
|
|
font-weight: 300;
|
2021-05-13 17:55:39 +00:00
|
|
|
}
|
2021-05-15 07:14:38 +00:00
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
}
|
2021-05-16 05:26:31 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.text-widget {
|
2021-08-31 14:10:11 +00:00
|
|
|
overflow: auto;
|
2021-05-17 05:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-widget::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2021-05-17 11:28:09 +00:00
|
|
|
|
|
|
|
|
.input-group-flat:focus-within {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2021-05-17 15:33:07 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.map-widget {
|
|
|
|
|
.place-search-input {
|
2021-05-17 15:33:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
width: 240px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
outline: none;
|
|
|
|
|
text-overflow: ellipses;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -120px;
|
|
|
|
|
}
|
2021-09-02 15:20:42 +00:00
|
|
|
|
|
|
|
|
.map-center {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
2021-05-17 15:33:07 +00:00
|
|
|
}
|
2021-05-17 16:38:11 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.events-toggle-active {
|
|
|
|
|
.toggle-icon {
|
2021-05-17 16:38:11 +00:00
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.events-toggle {
|
|
|
|
|
.toggle-icon {
|
2021-05-17 16:38:11 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
margin-left: auto;
|
2021-09-22 05:13:12 +00:00
|
|
|
transition: 0.3s transform;
|
2021-05-17 16:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggle-icon:after {
|
2021-12-23 16:49:57 +00:00
|
|
|
content: "";
|
2021-05-17 16:38:11 +00:00
|
|
|
display: inline-block;
|
2021-09-22 05:13:12 +00:00
|
|
|
vertical-align: 0.306em;
|
|
|
|
|
width: 0.46em;
|
|
|
|
|
height: 0.46em;
|
2021-05-17 16:38:11 +00:00
|
|
|
border-bottom: 1px solid;
|
|
|
|
|
border-left: 1px solid;
|
2021-09-22 05:13:12 +00:00
|
|
|
margin-right: 0.1em;
|
|
|
|
|
margin-left: 0.4em;
|
2021-05-17 16:38:11 +00:00
|
|
|
transform: rotate(-45deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-19 10:45:36 +00:00
|
|
|
|
|
|
|
|
.nav-link-title {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
|
.dropdown:hover {
|
2021-06-22 14:33:13 +00:00
|
|
|
.dropdown-menu {
|
2021-05-19 10:45:36 +00:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-22 07:29:44 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.query-manager-header {
|
|
|
|
|
.nav-item {
|
2021-05-22 07:29:44 +00:00
|
|
|
border-right: solid 1px #dadcde;
|
2021-11-11 15:52:31 +00:00
|
|
|
background: 0 0;
|
2021-05-22 07:29:44 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.nav-link {
|
2021-05-22 07:29:44 +00:00
|
|
|
height: 39px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-24 16:58:56 +00:00
|
|
|
|
|
|
|
|
input:focus-visible {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
2021-05-25 13:18:17 +00:00
|
|
|
|
|
|
|
|
.navbar-expand-md.navbar-light .nav-item.active:after {
|
2021-12-04 17:41:25 +00:00
|
|
|
border: 1px solid $primary;
|
2021-05-25 13:18:17 +00:00
|
|
|
}
|
2021-05-25 13:53:33 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.org-users-page {
|
2021-09-22 05:13:12 +00:00
|
|
|
.select-search__input {
|
2021-05-25 13:53:33 +00:00
|
|
|
color: #617179;
|
|
|
|
|
}
|
2021-08-02 14:31:46 +00:00
|
|
|
.select-search-role {
|
|
|
|
|
position: absolute;
|
|
|
|
|
margin-top: -1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-focus > .select-search__select > ul {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2022-01-12 11:20:26 +00:00
|
|
|
|
|
|
|
|
.select-search__option.is-selected {
|
|
|
|
|
background: $primary;
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
2021-05-25 13:53:33 +00:00
|
|
|
}
|
2021-05-26 03:36:17 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.encrypted-icon {
|
2021-05-26 03:36:17 +00:00
|
|
|
margin-bottom: 0.25rem;
|
2021-05-26 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.widget-documentation-link {
|
2021-05-26 08:00:42 +00:00
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
2021-09-15 15:40:59 +00:00
|
|
|
background: $white;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 1;
|
2021-05-26 08:00:42 +00:00
|
|
|
}
|
2021-05-26 08:04:33 +00:00
|
|
|
|
|
|
|
|
.components-container {
|
2021-06-22 14:33:13 +00:00
|
|
|
.draggable-box {
|
2021-05-26 08:04:33 +00:00
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-26 12:19:33 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.column-sort-row {
|
2021-12-04 17:41:25 +00:00
|
|
|
border-radius: 4px;
|
2021-05-31 03:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-button {
|
|
|
|
|
&.btn-primary:hover {
|
|
|
|
|
background: var(--tblr-btn-color-darker) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-04 15:55:17 +00:00
|
|
|
|
|
|
|
|
.editor-sidebar::-webkit-scrollbar {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-sidebar {
|
2021-11-16 11:44:09 +00:00
|
|
|
max-width: 300px;
|
2021-06-04 15:55:17 +00:00
|
|
|
scrollbar-width: none;
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
}
|
2021-06-05 12:23:13 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.sketch-picker {
|
2021-06-05 12:23:13 +00:00
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-picker-input {
|
|
|
|
|
border: solid 1px rgb(223, 223, 223);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2021-06-18 13:13:26 +00:00
|
|
|
|
2021-06-22 14:33:13 +00:00
|
|
|
.app-sharing-modal {
|
2021-09-22 05:13:12 +00:00
|
|
|
.form-control.is-invalid,
|
|
|
|
|
.was-validated .form-control:invalid {
|
2021-06-22 14:33:13 +00:00
|
|
|
border-color: #ffb0b0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widgets-list {
|
2021-09-22 05:13:12 +00:00
|
|
|
--tblr-gutter-x: 0px !important;
|
2021-06-22 14:33:13 +00:00
|
|
|
}
|
2021-06-25 12:52:32 +00:00
|
|
|
|
|
|
|
|
.input-with-icon {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
.icon-container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 10px;
|
|
|
|
|
top: calc(50% - 10px);
|
|
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-26 17:23:00 +00:00
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.dynamic-variable-preview {
|
2021-09-15 15:40:59 +00:00
|
|
|
min-height: 20px;
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
font-size: 12px;
|
2021-06-26 17:23:00 +00:00
|
|
|
margin-top: -2px;
|
2021-09-15 15:40:59 +00:00
|
|
|
word-wrap: break-word;
|
2021-06-26 17:23:00 +00:00
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
|
border-bottom-right-radius: 3px;
|
2021-09-15 15:40:59 +00:00
|
|
|
box-sizing: border-box;
|
2021-12-23 16:49:57 +00:00
|
|
|
font-family: "Source Code Pro", monospace;
|
2021-09-15 15:40:59 +00:00
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
2021-06-26 17:23:00 +00:00
|
|
|
}
|
2021-07-03 14:17:47 +00:00
|
|
|
|
2021-10-20 17:20:29 +00:00
|
|
|
.user-email:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.theme-dark {
|
2021-11-11 15:52:31 +00:00
|
|
|
.nav-item {
|
|
|
|
|
background: 0 0;
|
|
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
.navbar .navbar-nav .active > .nav-link,
|
|
|
|
|
.theme-dark .navbar .navbar-nav .nav-link.active,
|
|
|
|
|
.theme-dark .navbar .navbar-nav .nav-link.show,
|
|
|
|
|
.theme-dark .navbar .navbar-nav .show > .nav-link {
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #fff;
|
2021-10-27 21:05:18 +00:00
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
.form-check > .form-check-input:not(:checked) {
|
|
|
|
|
background-color: #fff;
|
2021-10-27 21:05:18 +00:00
|
|
|
}
|
2022-02-02 16:59:57 +00:00
|
|
|
.form-switch > .form-check-input:not(:checked) {
|
2022-02-04 11:05:11 +00:00
|
|
|
background-color: #47505d !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23CCD3DD'/%3E%3C/svg%3E") !important;
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
.form-check-label {
|
|
|
|
|
color: white;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
.left-sidebar .active {
|
|
|
|
|
background: #333c48;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-05 06:04:49 +00:00
|
|
|
.left-sidebar .left-sidebar-item {
|
|
|
|
|
border-bottom: 1px solid #333c48;
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-09-05 06:04:49 +00:00
|
|
|
|
2021-08-30 11:25:27 +00:00
|
|
|
.nav-tabs .nav-link.active {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-08-30 11:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #c3c3c3 !important;
|
2021-08-30 11:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.card-body > :last-child {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.form-control {
|
2021-07-03 14:17:47 +00:00
|
|
|
border: 1px solid #324156;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: #324156 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
.card .table tbody td a {
|
2021-10-16 03:11:34 +00:00
|
|
|
color: inherit;
|
|
|
|
|
}
|
2021-07-03 14:17:47 +00:00
|
|
|
|
|
|
|
|
.DateInput {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: #1f2936;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateInput_input {
|
|
|
|
|
background-color: #1f2936;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateRangePickerInput {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: #1f2936;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateInput_input__focused {
|
|
|
|
|
background: #1f2936;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateRangePickerInput__withBorder {
|
|
|
|
|
border: 1px solid #1f2936;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main .canvas-container .canvas-area {
|
|
|
|
|
background: #2f3c4c;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-01 08:20:21 +00:00
|
|
|
.main .canvas-container {
|
|
|
|
|
background-color: #2f3c4c;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.rdtOpen .rdtPicker {
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.editor .editor-sidebar .components-container .component-image-holder {
|
2021-09-22 05:13:12 +00:00
|
|
|
background: #2f3c4c !important;
|
|
|
|
|
border: 1px solid #2f3c4c !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
center,
|
|
|
|
|
.component-title {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.nav-tabs .nav-link:focus,
|
|
|
|
|
.nav-tabs .nav-link:hover {
|
|
|
|
|
border-color: transparent !important;
|
|
|
|
|
}
|
2021-07-03 14:17:47 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.modal-content,
|
|
|
|
|
.modal-header {
|
|
|
|
|
background-color: #1f2936 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.modal-header {
|
2021-09-22 05:13:12 +00:00
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.canvas-container {
|
2021-07-03 14:17:47 +00:00
|
|
|
background-color: #1f2936;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .main .query-pane {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid rgba(255, 255, 255, 0.09) !important;
|
|
|
|
|
border-width: 1px 0px 0px 0px !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-components-box {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: #1f2936 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
center {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-list {
|
2021-09-06 14:40:51 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.left-sidebar,
|
|
|
|
|
.editor-sidebar {
|
|
|
|
|
background-color: #1f2936 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-sidebar {
|
|
|
|
|
border: solid rgba(255, 255, 255, 0.09);
|
2022-02-19 18:02:43 +00:00
|
|
|
border-width: 0px 0px 0px 0px !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
|
|
|
|
|
.nav-tabs {
|
2021-09-22 05:13:12 +00:00
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.editor .editor-sidebar .nav-tabs .nav-link {
|
2021-07-03 14:17:47 +00:00
|
|
|
color: #fff;
|
2021-09-06 14:40:51 +00:00
|
|
|
img {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-table {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: #1f2936 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-17 07:20:41 +00:00
|
|
|
.jet-container {
|
|
|
|
|
background-color: #1f2936 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.nav-tabs .nav-item.show .nav-link,
|
|
|
|
|
.nav-tabs .nav-link.active {
|
2021-07-03 14:17:47 +00:00
|
|
|
background-color: #2f3c4c;
|
2021-09-22 05:13:12 +00:00
|
|
|
border-color: transparent !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .main .query-pane .query-definition-pane .header {
|
|
|
|
|
border: solid rgba(255, 255, 255, 0.09);
|
2021-09-22 05:13:12 +00:00
|
|
|
border-width: 0px 0px 1px 0px !important;
|
2021-07-03 17:07:50 +00:00
|
|
|
background: #1f2936;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left-sidebar {
|
|
|
|
|
border: solid rgba(255, 255, 255, 0.09);
|
|
|
|
|
border-width: 0px 1px 3px 0px;
|
2021-09-06 14:40:51 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-list {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-title {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.RichEditor-root {
|
|
|
|
|
background: #1f2936;
|
|
|
|
|
border: 1px solid #2f3c4c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-description {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.btn-light,
|
|
|
|
|
.btn-outline-light {
|
2022-02-06 19:34:52 +00:00
|
|
|
background-color: #42546a;
|
2021-10-24 14:19:00 +00:00
|
|
|
--tblr-btn-color-text: #ffffff;
|
2021-09-06 14:40:51 +00:00
|
|
|
img {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .left-sidebar .datasources-container tr {
|
|
|
|
|
border-bottom: solid 1px rgba(255, 255, 255, 0.09);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .left-sidebar .datasources-container .datasources-header {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid rgba(255, 255, 255, 0.09) !important;
|
|
|
|
|
border-width: 0px 0px 1px 0px !important;
|
|
|
|
|
}
|
2021-07-03 14:17:47 +00:00
|
|
|
|
|
|
|
|
.query-manager-header .nav-item {
|
|
|
|
|
border-right: solid 1px rgba(255, 255, 255, 0.09);
|
2021-09-06 14:40:51 +00:00
|
|
|
.nav-link {
|
2021-07-03 14:17:47 +00:00
|
|
|
color: #c3c3c3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-group-text {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid 1px rgba(255, 255, 255, 0.09) !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.app-users-list {
|
2021-07-03 14:17:47 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.data-pane {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid rgba(255, 255, 255, 0.09) !important;
|
|
|
|
|
border-width: 0px 1px 0px 0px !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main .query-pane .data-pane .queries-container .queries-header {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid rgba(255, 255, 255, 0.09) !important;
|
|
|
|
|
border-width: 0px 0px 1px 0px !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.query-pane {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: #1f2936 !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-10-24 14:17:36 +00:00
|
|
|
.input-icon .input-icon-addon img {
|
|
|
|
|
filter: invert(1);
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.svg-icon {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 21:14:31 +00:00
|
|
|
.launch-btn {
|
|
|
|
|
filter: brightness(0.4) !important;
|
|
|
|
|
background: #8d9095;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.badge {
|
2021-09-06 14:40:51 +00:00
|
|
|
.svg-icon {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(1) invert(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
|
background: transparent;
|
2021-09-06 14:40:51 +00:00
|
|
|
.text-muted {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #fff !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .editor-sidebar .inspector .header {
|
2021-09-22 05:13:12 +00:00
|
|
|
border: solid rgba(255, 255, 255, 0.09) !important;
|
|
|
|
|
border-width: 0px 0px 1px 0px !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
2021-10-21 02:18:17 +00:00
|
|
|
|
|
|
|
|
.hr-text {
|
2021-10-13 17:38:41 +00:00
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
2021-10-21 02:18:17 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.skeleton-line::after {
|
2022-02-02 02:37:02 +00:00
|
|
|
background-image: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
#566177 0,
|
|
|
|
|
#5a6170 40%,
|
|
|
|
|
#4c5b79 80%
|
|
|
|
|
);
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-02 07:03:46 +00:00
|
|
|
.app-icon-skeleton::after {
|
2022-02-04 11:05:11 +00:00
|
|
|
background-image: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
#566177 0,
|
|
|
|
|
#5a6170 40%,
|
|
|
|
|
#4c5b79 80%
|
|
|
|
|
);
|
2022-02-02 07:03:46 +00:00
|
|
|
}
|
|
|
|
|
|
2022-02-07 16:06:46 +00:00
|
|
|
.folder-icon-skeleton::after {
|
|
|
|
|
background-image: linear-gradient(
|
|
|
|
|
to right,
|
|
|
|
|
#566177 0,
|
|
|
|
|
#5a6170 40%,
|
|
|
|
|
#4c5b79 80%
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__input {
|
|
|
|
|
color: rgb(224, 224, 224);
|
|
|
|
|
background-color: #2b3547;
|
|
|
|
|
border: 1px solid #2b3547;
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__select {
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__row:not(:first-child) {
|
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__option,
|
|
|
|
|
.select-search__not-found {
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__option.is-highlighted,
|
|
|
|
|
.select-search__option:not(.is-selected):hover {
|
|
|
|
|
background: rgba(47, 204, 139, 0.1);
|
|
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.select-search__option.is-highlighted.is-selected,
|
|
|
|
|
.select-search__option.is-selected:hover {
|
|
|
|
|
background: #2eb378;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.org-users-page {
|
2021-09-22 05:13:12 +00:00
|
|
|
.user-email,
|
|
|
|
|
.user-status {
|
2021-07-03 14:17:47 +00:00
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 11:20:26 +00:00
|
|
|
.org-users-page {
|
|
|
|
|
.select-search__option.is-selected {
|
|
|
|
|
background: $primary;
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
|
|
|
|
.select-search__option:not(.is-selected):hover {
|
|
|
|
|
background: rgba(66, 153, 225, 0.1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-03 14:17:47 +00:00
|
|
|
.react-json-view {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-color: transparent !important;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codehinter-default-input {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 1px solid #333c48;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-picker-input {
|
|
|
|
|
border: solid 1px #333c48;
|
2022-02-06 19:34:52 +00:00
|
|
|
height: 36px;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codehinter-query-editor-input {
|
|
|
|
|
background-color: #272822;
|
|
|
|
|
border: 1px solid #2c3a4c;
|
2021-08-30 11:25:27 +00:00
|
|
|
border-radius: 0;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codehinter-query-editor-input .CodeMirror {
|
|
|
|
|
height: 31px !important;
|
|
|
|
|
}
|
2021-07-03 17:07:50 +00:00
|
|
|
|
|
|
|
|
.codehinter-query-editor-input .CodeMirror {
|
2021-09-22 05:13:12 +00:00
|
|
|
color: #c3c3c3 !important;
|
2021-07-03 17:07:50 +00:00
|
|
|
}
|
2021-07-03 19:51:20 +00:00
|
|
|
|
2022-02-02 02:37:02 +00:00
|
|
|
.select-search:not(.is-loading):not(.select-search--multiple)
|
|
|
|
|
.select-search__value::after {
|
2021-09-22 05:13:12 +00:00
|
|
|
transform: rotate(45deg);
|
|
|
|
|
border-right: 1px solid #fff;
|
|
|
|
|
border-bottom: 1px solid #fff;
|
2021-07-03 19:51:20 +00:00
|
|
|
}
|
2021-10-26 04:32:34 +00:00
|
|
|
|
|
|
|
|
.widget-documentation-link {
|
|
|
|
|
background-color: #1f2936;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-documentation-link a {
|
|
|
|
|
color: rgb(66, 153, 225);
|
|
|
|
|
}
|
2022-02-07 16:40:58 +00:00
|
|
|
|
|
|
|
|
.app-version-name.form-select {
|
|
|
|
|
border-color: $border-grey-dark;
|
|
|
|
|
}
|
2021-09-22 05:13:12 +00:00
|
|
|
}
|
2021-07-03 14:17:47 +00:00
|
|
|
|
|
|
|
|
.main-wrapper {
|
2021-12-07 08:47:02 +00:00
|
|
|
position: relative;
|
2021-07-03 14:17:47 +00:00
|
|
|
min-height: 100%;
|
|
|
|
|
min-width: 100%;
|
2021-12-01 08:20:21 +00:00
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-wrapper.theme-dark {
|
|
|
|
|
background-color: #2b394b;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.jet-table {
|
2021-07-03 14:17:47 +00:00
|
|
|
.global-search-field {
|
2021-09-06 14:40:51 +00:00
|
|
|
background: transparent;
|
2021-07-03 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-backdrop.show {
|
|
|
|
|
opacity: 0.74;
|
2021-07-13 11:03:22 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-30 06:06:27 +00:00
|
|
|
.gui-select-wrappper .select-search__input {
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.theme-dark .input-group-text,
|
|
|
|
|
.theme-dark .markdown > table thead th,
|
|
|
|
|
.theme-dark .table thead th {
|
2021-07-13 11:03:22 +00:00
|
|
|
background: #1c252f;
|
2021-10-05 02:18:17 +00:00
|
|
|
color: #fff;
|
2021-08-29 06:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-06 14:40:51 +00:00
|
|
|
.sketch-picker {
|
2021-08-29 06:37:20 +00:00
|
|
|
z-index: 1000;
|
2021-08-30 11:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-padding {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs {
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link.active {
|
|
|
|
|
border: 0;
|
2022-02-02 16:59:57 +00:00
|
|
|
border-bottom: 1px solid $primary;
|
2021-08-30 11:25:27 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-no-divider {
|
|
|
|
|
td {
|
|
|
|
|
border-bottom-width: 0px;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-border {
|
|
|
|
|
border-radius: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
input[type="text"] {
|
2021-09-01 12:16:38 +00:00
|
|
|
outline-color: #dadcde !important;
|
2021-09-01 13:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-header {
|
2021-09-22 05:13:12 +00:00
|
|
|
text-transform: capitalize;
|
|
|
|
|
margin-top: 12px !important;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 12px;
|
2021-09-01 13:11:17 +00:00
|
|
|
}
|
2021-09-05 05:12:03 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.query-manager-events {
|
2021-09-06 14:40:51 +00:00
|
|
|
max-width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.validation-without-icon {
|
2021-09-22 05:13:12 +00:00
|
|
|
background-image: none !important;
|
2021-09-06 08:50:38 +00:00
|
|
|
}
|
2021-09-06 14:40:51 +00:00
|
|
|
|
2021-09-22 05:13:12 +00:00
|
|
|
.dropdown-widget,
|
|
|
|
|
.multiselect-widget {
|
2021-10-22 09:12:37 +00:00
|
|
|
.form-label {
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-05 05:12:03 +00:00
|
|
|
.select-search__input {
|
2021-10-22 09:12:37 +00:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search__value {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.select-search {
|
2021-12-23 16:49:57 +00:00
|
|
|
height: 100%;
|
2021-09-05 05:12:03 +00:00
|
|
|
}
|
2021-09-05 05:32:17 +00:00
|
|
|
|
|
|
|
|
.select-search__options {
|
2021-09-22 05:13:12 +00:00
|
|
|
margin-bottom: 0 !important;
|
2021-09-05 05:32:17 +00:00
|
|
|
|
|
|
|
|
.select-search__option {
|
2021-09-14 06:27:14 +00:00
|
|
|
height: auto;
|
2021-09-21 13:50:40 +00:00
|
|
|
min-height: 30px;
|
2021-09-05 05:32:17 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-09-06 08:50:38 +00:00
|
|
|
}
|
2021-09-08 08:54:51 +00:00
|
|
|
|
2022-02-08 07:11:30 +00:00
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
|
|
|
.invitation-page::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
|
|
|
.invitation-page {
|
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
|
}
|
|
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.show {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.hide {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-08 08:54:51 +00:00
|
|
|
.draggable-box:focus-within {
|
2021-09-22 05:13:12 +00:00
|
|
|
z-index: 2 !important;
|
|
|
|
|
}
|
2021-09-27 14:07:02 +00:00
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.cursor-wait {
|
|
|
|
|
cursor: wait;
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
.cursor-text {
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
cursor: text;
|
|
|
|
|
}
|
|
|
|
|
.cursor-none {
|
|
|
|
|
cursor: none;
|
|
|
|
|
}
|
2021-09-27 14:07:02 +00:00
|
|
|
.theme-dark .event-action {
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.event-action {
|
2021-09-27 14:07:02 +00:00
|
|
|
filter: brightness(0) invert(0);
|
|
|
|
|
}
|
2021-10-07 06:52:02 +00:00
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.disabled {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
2021-10-07 06:52:02 +00:00
|
|
|
.DateRangePicker {
|
|
|
|
|
padding: 1.25px 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.datepicker-widget {
|
2021-12-23 16:49:57 +00:00
|
|
|
.input-field {
|
2021-10-07 06:52:02 +00:00
|
|
|
min-height: 26px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
}
|
2022-01-11 11:19:14 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
td.rdtActive,
|
|
|
|
|
td.rdtActive:hover {
|
2022-01-11 11:19:14 +00:00
|
|
|
background-color: $primary;
|
|
|
|
|
}
|
2021-10-07 06:52:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.daterange-picker-widget {
|
|
|
|
|
.DateInput_input {
|
|
|
|
|
min-height: 24px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
border-bottom: 0px;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
.DateRangePicker {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateRangePickerInput_arrow_svg {
|
|
|
|
|
height: 17px;
|
|
|
|
|
}
|
2022-02-03 09:07:39 +00:00
|
|
|
|
2022-02-04 11:05:11 +00:00
|
|
|
.DateRangePickerInput {
|
2022-02-03 09:07:39 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
|
2022-02-03 09:07:39 +00:00
|
|
|
.DateInput_fang {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 57px !important;
|
|
|
|
|
}
|
2021-10-07 06:52:02 +00:00
|
|
|
}
|
2021-10-11 03:01:03 +00:00
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.fw-400 {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-11 03:01:03 +00:00
|
|
|
.fw-500 {
|
|
|
|
|
font-weight: 500;
|
2021-10-16 03:14:29 +00:00
|
|
|
}
|
2021-10-26 11:38:52 +00:00
|
|
|
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.ligh-gray {
|
2021-12-23 16:49:57 +00:00
|
|
|
color: #656d77;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item {
|
2021-11-11 15:52:31 +00:00
|
|
|
background: #fff;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-style: normal;
|
2021-11-04 09:19:49 +00:00
|
|
|
font-weight: 400;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
line-height: 22px;
|
|
|
|
|
letter-spacing: -0.1px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link.active {
|
2021-11-04 09:19:49 +00:00
|
|
|
font-weight: 400 !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
color: $primary !important;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty {
|
2022-02-01 09:19:54 +00:00
|
|
|
padding-top: 1.5rem !important;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-img {
|
2022-02-01 09:19:54 +00:00
|
|
|
margin-bottom: 0 !important;
|
2022-02-04 11:05:11 +00:00
|
|
|
img {
|
2022-02-01 09:19:54 +00:00
|
|
|
height: 220px !important;
|
|
|
|
|
width: 260.83px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-action {
|
2022-02-01 09:19:54 +00:00
|
|
|
margin-top: 0 !important;
|
2022-02-07 12:32:49 +00:00
|
|
|
|
|
|
|
|
a + a.btn-loading::after {
|
|
|
|
|
color: $primary;
|
|
|
|
|
}
|
2022-02-01 09:19:54 +00:00
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-action a {
|
2022-02-01 09:19:54 +00:00
|
|
|
height: 36px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-action a:first-child {
|
2022-02-01 09:19:54 +00:00
|
|
|
margin-right: 24px;
|
|
|
|
|
}
|
|
|
|
|
.empty-action a:first-child:hover {
|
|
|
|
|
color: #ffffff !important;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-import-button {
|
|
|
|
|
color: #4d72fa !important ;
|
2022-02-01 09:19:54 +00:00
|
|
|
background: #ffffff !important;
|
2022-02-04 11:05:11 +00:00
|
|
|
border: 1px solid #4d72fa !important;
|
2022-02-01 09:19:54 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
2022-02-04 11:05:11 +00:00
|
|
|
&:hover {
|
2022-02-01 09:19:54 +00:00
|
|
|
background-color: #f4f6fa !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.empty-welcome-header {
|
2022-02-01 09:19:54 +00:00
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
line-height: 39px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
margin-top: 40px;
|
|
|
|
|
color: #000;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
}
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
.empty-title {
|
|
|
|
|
font-style: normal;
|
2022-02-01 09:19:54 +00:00
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 19px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2022-02-04 11:05:11 +00:00
|
|
|
color: #5e5e5e;
|
2022-02-01 09:19:54 +00:00
|
|
|
margin-bottom: 24px;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
}
|
2022-02-01 09:19:54 +00:00
|
|
|
// template card styles
|
2022-02-04 11:05:11 +00:00
|
|
|
.template-card-wrapper {
|
2022-02-01 09:19:54 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #fffffc;
|
|
|
|
|
border: 1px solid #d2ddec;
|
2022-02-01 09:19:54 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
width: 299px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.template-action-wrapper {
|
2022-02-01 09:19:54 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row !important;
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 19px;
|
2022-02-04 11:05:11 +00:00
|
|
|
color: #4d72fa;
|
|
|
|
|
p {
|
2022-02-01 09:19:54 +00:00
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.template-card-title {
|
2022-02-01 09:19:54 +00:00
|
|
|
font-family: Inter;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: #000000;
|
|
|
|
|
margin-bottom: 3px !important;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.template-card-details {
|
2022-02-01 09:19:54 +00:00
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.template-icon-wrapper {
|
|
|
|
|
width: 61.44px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
top: 685px;
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #d2ddec;
|
2022-02-01 09:19:54 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 20px 16.36px;
|
Feature: Collaboration ( realtime comments for canvas ) 🔥 (#810)
* feat: initial commit for collaboration feature
* add dnd to comments
* add positions endpoint
* feat: encapsulate all http common logic in http-client
* segregate sections and transfer responsibility of state
* feat: use-spring to add fade effect :zap:
* fix: open in right
* fix: left-right position css
* add footer for message
* integrate getcomment endpoint
* use fromnow for date ago
* add dnd
* - Add data trasfer object for comment
- Add class-validator package to check the response type from client
- Add comment repository class for persistance layer
- Add comment service with std. http methods
- Update controller with all http methods
- Update comment module
- Fix http-client bug when error is thrown
* fix http client bug when error is thrown
* feat: add entity thread
* feat: add migrations for thread and comment
* update entitites
* add tid to migration
* filter comments by tid(thread_id)
* fix: comment migration, add missing column comment
* feat: integrate in ui
* feat: split comments based on app_id
* fix: dnd to correct position
* package json engines
* engines update
* update npm
* npm 6 to 7
* fix: add user initials to thread
* fix: add firtname lastname to the comments
* - Return user object when save thread called
- Hide password field from user response
- Fix created_at date typo
- Instead of fetch all threads on new thread added, add the response to array of existing threads
* feat: update ui components
* change icon on comments view
* ui fixes
* fix: close icon close the popover
* temp: comment select: false
* use currentUser from localStorage
* fix: on click outside if comment is open, dont hit addThread
* fix: auth token issue in http-client
* on drag hide the comment if open
* add jwt auth
* spec: add test for comment & thread
* cleanup: remove console.log
* feat: add comment actions
* feat: add edit, delete, resolve options
* feat: add mentions component
* feat: add nestjs websockets
* temp
* websocket: establish client-server communication
* ws: add message listner to comments module in ui
* feat: add broadcast method to broadcast new events to all clients :bomb:
* ws: cleanup :call_me_hand:
* fix: remove max height from comment actions
* feat: add user mentions, emoji support
* fix: add static list of users - temp
* update and delete iterations
* - Rename comment, thread to comments, threads
- Add conditional actions
- Show edit, delete only if he is comment owner
- Show resolve only if he is thread owner
* reset engines
* move svgr webpack to deps
* fix: ui issues
* remove log stmt
* refactor: move resolved icon to comment-header
* feat: allow comments to be added on top of widgets
* feat: add keyboard shortcut
* scroll to bottom on comment add
* ui fixes
* feat: add react toast for notification display
* feat: add comment badge
* fix: ws connection
* fix: ws
* remove rvrse
* feat: add comment sidebar
* feat: add comment right sidebar
* fix: add missing foreign key elements
* - upgrade typeorm to 0.2.38
- comment sidebar ui
- added filter ui
* feat: on click of right sidebar notificaiton open the comment box
* reset engines
* fix: add organization id to the comment and thread module
* fix: add current version id
* add currentversion id
* disable comments if no id present
* temp:checking for heroku deploy
* fetch app on edit and deploy version
* rename current_version_id to app_versions_id
* ui fixes
* show mentioned user in blue color
* add ui changes
* add authorization for create thread
* change color to blue on click of comment, add auth for other endpoints of thread
* update threads, notifications using socket
* add auth for comments
* remove events spec file
* fix duplicate key error
* fix notificaitons updation on edit, delete, resolve buttons clicked
* update notifications for edit
* feature toggle changes for frontend
* add check for comments server
* add emoji mart package for emoji
* add reply count in comment sidebar
* subtract 1 from count in comment sidebar
* change empty text when no comments available
2021-11-01 07:28:03 +00:00
|
|
|
}
|
2022-02-01 09:19:54 +00:00
|
|
|
// template style end
|
2021-11-02 05:29:40 +00:00
|
|
|
|
2021-11-04 08:53:50 +00:00
|
|
|
.calendar-widget.compact {
|
|
|
|
|
.rbc-time-view-resources .rbc-time-header-content {
|
|
|
|
|
min-width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-time-view-resources .rbc-day-slot {
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-time-view-resources .rbc-header,
|
|
|
|
|
.rbc-time-view-resources .rbc-day-bg {
|
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-widget.dont-highlight-today {
|
|
|
|
|
.rbc-today {
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-current-time-indicator {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-widget {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.rbc-day-slot .rbc-event,
|
|
|
|
|
.rbc-day-slot .rbc-background-event {
|
2021-11-04 08:53:50 +00:00
|
|
|
border-left: 3px solid #26598533;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-toolbar {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-event {
|
|
|
|
|
.rbc-event-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-off-range-bg {
|
|
|
|
|
background-color: #f4f6fa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-toolbar {
|
|
|
|
|
.rbc-btn-group {
|
|
|
|
|
button {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 04:40:54 +00:00
|
|
|
//!for calendar widget week view with compact/spacious mode border fix
|
|
|
|
|
.resources-week-cls .rbc-time-column:nth-last-child(7n) {
|
2022-01-14 08:27:31 +00:00
|
|
|
border-left: none !important;
|
2021-12-30 04:40:54 +00:00
|
|
|
.rbc-timeslot-group {
|
|
|
|
|
border-left: 2.5px solid #dadcde !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.resources-week-cls .rbc-allday-cell {
|
2022-01-14 08:27:31 +00:00
|
|
|
border: none !important;
|
|
|
|
|
.rbc-row {
|
|
|
|
|
border-left: 1.5px solid #dadcde;
|
|
|
|
|
border-right: 1.5px solid #dadcde;
|
|
|
|
|
}
|
2021-12-30 04:40:54 +00:00
|
|
|
}
|
|
|
|
|
.resources-week-cls .rbc-time-header-cell {
|
2022-01-14 08:27:31 +00:00
|
|
|
border: none !important;
|
2021-12-30 04:40:54 +00:00
|
|
|
}
|
|
|
|
|
.resources-week-cls .rbc-time-view-resources .rbc-header {
|
2022-01-14 08:27:31 +00:00
|
|
|
border-left: 1.5px solid #dadcde !important;
|
|
|
|
|
border-right: 1.5px solid #dadcde !important;
|
2021-12-30 04:40:54 +00:00
|
|
|
}
|
|
|
|
|
|
2021-11-04 08:53:50 +00:00
|
|
|
.calendar-widget.hide-view-switcher {
|
|
|
|
|
.rbc-toolbar {
|
|
|
|
|
.rbc-btn-group:nth-of-type(3) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-widget.dark-mode {
|
|
|
|
|
background-color: #1d2a39;
|
|
|
|
|
|
|
|
|
|
.rbc-toolbar {
|
|
|
|
|
button {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
button:hover,
|
|
|
|
|
button.rbc-active {
|
2021-11-04 08:53:50 +00:00
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-off-range-bg {
|
|
|
|
|
background-color: #2b394b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-selected-cell {
|
|
|
|
|
background-color: #22242d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rbc-today {
|
|
|
|
|
background-color: #5a7ca8;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-widget.dark-mode.dont-highlight-today {
|
|
|
|
|
.rbc-today {
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-02 05:29:40 +00:00
|
|
|
.navbar .navbar-nav {
|
|
|
|
|
min-height: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-brand-image {
|
2021-12-01 10:42:32 +00:00
|
|
|
height: 1.2rem;
|
2021-11-03 14:06:18 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-12 02:08:32 +00:00
|
|
|
.navbar .navbar-brand:hover,
|
|
|
|
|
.theme-dark .navbar .navbar-brand:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-03 14:06:18 +00:00
|
|
|
.nav-tabs .nav-link.active {
|
2021-11-04 09:19:49 +00:00
|
|
|
font-weight: 400 !important;
|
2021-11-11 15:52:31 +00:00
|
|
|
margin-bottom: -1px !important;
|
2021-11-03 14:06:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-tabs .nav-link {
|
|
|
|
|
font-weight: 400 !important;
|
2021-11-11 15:52:31 +00:00
|
|
|
margin: 0 !important;
|
2021-11-22 16:11:26 +00:00
|
|
|
height: 100%;
|
2021-11-03 14:06:18 +00:00
|
|
|
}
|
2021-11-15 06:42:02 +00:00
|
|
|
|
|
|
|
|
.code-editor-widget {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
.CodeMirror {
|
2021-12-23 16:49:57 +00:00
|
|
|
border-radius: 0 !important;
|
|
|
|
|
margin-top: -1px !important;
|
2021-11-15 06:42:02 +00:00
|
|
|
}
|
2021-12-04 17:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-14 08:27:31 +00:00
|
|
|
.jet-listview {
|
|
|
|
|
overflow-y: overlay;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
// .rows {
|
|
|
|
|
// }
|
2022-01-14 08:27:31 +00:00
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
// .list-item {
|
|
|
|
|
// }
|
2022-01-14 08:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-listview::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jet-listview::-webkit-scrollbar-thumb {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.code-hinter-wrapper .popup-btn {
|
2021-12-10 03:09:23 +00:00
|
|
|
position: absolute;
|
|
|
|
|
display: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.code-hinter-wrapper:hover {
|
|
|
|
|
.popup-btn {
|
2021-12-23 16:49:57 +00:00
|
|
|
display: block !important;
|
2021-12-10 03:09:23 +00:00
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-portal-wrapper {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: fixed;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 40%;
|
2022-01-14 08:27:31 +00:00
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
|
width: 500px !important;
|
|
|
|
|
height: 300px !important;
|
|
|
|
|
padding: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-15 04:23:17 +00:00
|
|
|
transform: translate(-60%, -60%);
|
|
|
|
|
height: 350px;
|
|
|
|
|
width: auto;
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
|
|
|
|
|
.modal-content {
|
2021-12-23 16:49:57 +00:00
|
|
|
border-radius: 5px !important;
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
|
2021-12-10 03:09:23 +00:00
|
|
|
.modal-body {
|
2021-12-23 16:49:57 +00:00
|
|
|
width: 500px !important;
|
|
|
|
|
height: 302px !important;
|
|
|
|
|
padding: 0px !important;
|
|
|
|
|
margin: 0px !important;
|
|
|
|
|
margin-left: -1px !important; //fix the modal body code mirror margin
|
2021-12-15 04:23:17 +00:00
|
|
|
|
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
|
border-bottom: 0.75px solid;
|
|
|
|
|
border-left: 0.75px solid;
|
|
|
|
|
border-right: 0.75px solid;
|
|
|
|
|
|
|
|
|
|
@include theme-border($light-theme: true);
|
|
|
|
|
|
|
|
|
|
&.dark-mode-border {
|
|
|
|
|
@include theme-border($light-theme: false);
|
|
|
|
|
}
|
2021-12-10 03:09:23 +00:00
|
|
|
}
|
|
|
|
|
.modal-dialog {
|
|
|
|
|
margin-top: 4%;
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
|
2021-12-10 03:09:23 +00:00
|
|
|
.modal-header {
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2021-12-15 04:23:17 +00:00
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
.editor-container {
|
2021-12-15 04:23:17 +00:00
|
|
|
padding: 0px;
|
2021-12-10 03:09:23 +00:00
|
|
|
.CodeMirror {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
margin: 0;
|
2021-12-23 16:49:57 +00:00
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
2022-01-04 03:56:44 +00:00
|
|
|
|
|
|
|
|
.query-hinter {
|
2022-01-14 08:27:31 +00:00
|
|
|
.CodeMirror-line {
|
2022-01-04 03:56:44 +00:00
|
|
|
margin-left: 2rem !important;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-14 08:27:31 +00:00
|
|
|
.CodeMirror-cursors .CodeMirror-cursor {
|
2022-01-04 03:56:44 +00:00
|
|
|
margin-left: 2rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-block-portal {
|
2021-12-23 16:49:57 +00:00
|
|
|
.bg-light {
|
2021-12-15 04:23:17 +00:00
|
|
|
border-radius: 0 0 5px 5px;
|
2021-12-23 16:49:57 +00:00
|
|
|
outline: 0.75px solid $light-green;
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-dark {
|
|
|
|
|
margin-top: 1px;
|
|
|
|
|
border-radius: 0 0 5px 5px;
|
2021-12-23 16:49:57 +00:00
|
|
|
outline: 0.75px solid $light-green;
|
2021-12-10 03:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-15 04:23:17 +00:00
|
|
|
.dynamic-variable-preview {
|
2021-12-23 16:49:57 +00:00
|
|
|
padding: 4px !important;
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
2021-12-10 03:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portal-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
color: #656d77;
|
|
|
|
|
background-color: #ffffffd9;
|
|
|
|
|
background-clip: padding-box;
|
2021-12-23 16:49:57 +00:00
|
|
|
border-top-left-radius: 5px !important;
|
|
|
|
|
border-top-right-radius: 5px !important;
|
|
|
|
|
width: 498px !important;
|
2021-12-15 04:23:17 +00:00
|
|
|
outline: 0.75px solid;
|
|
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
@include theme-border($light-theme: true, $outline: true);
|
2021-12-15 04:23:17 +00:00
|
|
|
|
2021-12-23 16:49:57 +00:00
|
|
|
&.dark-mode-border {
|
|
|
|
|
@include theme-border($light-theme: false, $outline: true);
|
2021-12-15 04:23:17 +00:00
|
|
|
}
|
2021-12-10 03:09:23 +00:00
|
|
|
}
|
2021-12-04 17:41:25 +00:00
|
|
|
.tabs-inspector {
|
|
|
|
|
.nav-item {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.nav-item:hover {
|
2022-01-22 04:21:35 +00:00
|
|
|
border: 1px solid transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-04 17:41:25 +00:00
|
|
|
.nav-item:not(.active) {
|
|
|
|
|
border-bottom: 1px solid #e7eaef;
|
|
|
|
|
}
|
2021-12-05 10:01:57 +00:00
|
|
|
|
|
|
|
|
.nav-link.active {
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-bottom: 1px solid $primary;
|
2022-01-22 04:21:35 +00:00
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-06 19:34:52 +00:00
|
|
|
.tabs-inspector.dark {
|
|
|
|
|
.nav-link.active {
|
|
|
|
|
border-bottom: 1px solid $primary!important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.close-icon {
|
2022-01-22 04:21:35 +00:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 20%;
|
|
|
|
|
height: 22;
|
|
|
|
|
border-bottom: 1px solid #e7eaef;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.svg-wrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 70%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-left: 1px solid #e7eaef;
|
|
|
|
|
margin-left: 20px;
|
2022-01-27 10:51:38 +00:00
|
|
|
|
|
|
|
|
.close-svg {
|
2022-01-22 04:21:35 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2021-12-05 10:01:57 +00:00
|
|
|
}
|
2021-12-04 17:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs-inspector.nav-tabs {
|
|
|
|
|
border: 0;
|
2022-02-06 19:34:52 +00:00
|
|
|
width: 81%;
|
2021-12-04 17:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-primary-lt {
|
|
|
|
|
color: #fff !important;
|
2021-12-23 16:49:57 +00:00
|
|
|
background: #6383db !important;
|
2021-12-08 05:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabbed-navbar .nav-item.active:after {
|
|
|
|
|
margin-bottom: -0.25rem;
|
2021-12-09 03:43:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-name {
|
|
|
|
|
width: 325px;
|
|
|
|
|
left: 150px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-name:hover {
|
|
|
|
|
background: $bg-light;
|
2021-12-10 23:06:03 +00:00
|
|
|
&.dark {
|
|
|
|
|
@extend .bg-dark;
|
|
|
|
|
}
|
2021-12-09 03:43:32 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-24 05:51:54 +00:00
|
|
|
.nav-auto-save {
|
|
|
|
|
width: 325px;
|
|
|
|
|
left: 485px;
|
|
|
|
|
position: absolute;
|
2022-01-27 10:51:38 +00:00
|
|
|
color: #36af8b;
|
2022-01-24 05:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-09 03:43:32 +00:00
|
|
|
.layout-buttons {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-24 05:51:54 +00:00
|
|
|
.app-version-menu {
|
2021-12-09 03:43:32 +00:00
|
|
|
position: absolute;
|
|
|
|
|
right: 220px;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
min-width: 100px;
|
2022-01-24 05:51:54 +00:00
|
|
|
max-width: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version-menu-sm {
|
|
|
|
|
height: 30px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version-menu .dropdown-menu {
|
|
|
|
|
left: -90px;
|
|
|
|
|
width: 283px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version-menu .released {
|
2022-01-27 10:51:38 +00:00
|
|
|
color: #36af8b;
|
2022-01-24 05:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version-menu .released-subtext {
|
|
|
|
|
font-size: 12px;
|
2022-01-27 10:51:38 +00:00
|
|
|
color: #36af8b;
|
2022-01-24 05:51:54 +00:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version-menu .create-link {
|
|
|
|
|
margin: auto;
|
|
|
|
|
width: 50%;
|
|
|
|
|
padding-left: 10px;
|
2021-12-09 03:43:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.canvas-background-holder {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.canvas-background-picker {
|
|
|
|
|
position: fixed;
|
2021-12-10 03:09:23 +00:00
|
|
|
}
|
2021-12-22 09:07:37 +00:00
|
|
|
|
2022-01-03 03:48:56 +00:00
|
|
|
/**
|
|
|
|
|
* Timer Widget
|
|
|
|
|
*/
|
|
|
|
|
.timer-wrapper {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
.counter-container {
|
|
|
|
|
font-size: 3em;
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 09:07:37 +00:00
|
|
|
/**
|
|
|
|
|
* Search Box
|
|
|
|
|
*/
|
2021-12-23 16:49:57 +00:00
|
|
|
.search-box-wrapper {
|
2021-12-22 09:07:37 +00:00
|
|
|
input {
|
|
|
|
|
width: 200px;
|
2021-12-27 11:29:35 +00:00
|
|
|
border-radius: 5px !important;
|
2021-12-22 09:07:37 +00:00
|
|
|
}
|
|
|
|
|
.input-icon .input-icon-addon {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2022-01-20 13:05:37 +00:00
|
|
|
.input-icon .input-icon-addon.end {
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
div {
|
2022-01-27 10:51:38 +00:00
|
|
|
background-color: #a6b6cc;
|
2022-01-20 13:05:37 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
svg {
|
|
|
|
|
height: 14px;
|
2022-01-27 10:51:38 +00:00
|
|
|
width: 14px;
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-23 16:49:57 +00:00
|
|
|
}
|
2022-01-07 06:54:07 +00:00
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
.searchbox-wrapper {
|
2022-02-04 11:05:11 +00:00
|
|
|
margin-top: 0 !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
input {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-radius: $border-radius !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-07 06:54:07 +00:00
|
|
|
.fixedHeader {
|
|
|
|
|
table thead {
|
|
|
|
|
position: -webkit-sticky; // this is for all Safari (Desktop & iOS), not for Chrome
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
border-top: 0;
|
|
|
|
|
z-index: 1; // any positive value, layer order is global
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-10 04:47:47 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Folder List
|
|
|
|
|
*/
|
|
|
|
|
.folder-list {
|
2022-02-02 02:37:02 +00:00
|
|
|
color: #292d37;
|
2022-01-10 04:47:47 +00:00
|
|
|
.list-group-transparent .list-group-item.active {
|
|
|
|
|
color: $primary;
|
2022-01-14 08:27:31 +00:00
|
|
|
background-color: #edf1ff;
|
2022-01-10 04:47:47 +00:00
|
|
|
.folder-ico {
|
2022-02-02 02:37:02 +00:00
|
|
|
filter: invert(29%) sepia(84%) saturate(4047%) hue-rotate(215deg)
|
|
|
|
|
brightness(98%) contrast(111%);
|
2022-01-10 04:47:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list-group-item {
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.list-group-item.all-apps-link {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
.folder-info {
|
2022-01-14 08:27:31 +00:00
|
|
|
color: #8991a0;
|
2022-01-10 04:47:47 +00:00
|
|
|
font-size: 0.75rem;
|
|
|
|
|
display: contents;
|
|
|
|
|
}
|
|
|
|
|
.folder-create-btn {
|
2022-01-14 08:27:31 +00:00
|
|
|
color: #0565ff;
|
2022-01-10 04:47:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Home page modal
|
|
|
|
|
*/
|
2022-01-14 08:27:31 +00:00
|
|
|
.modal-content.home-modal-component {
|
2022-01-10 04:47:47 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
2022-01-14 08:27:31 +00:00
|
|
|
background-color: #fefeff;
|
2022-01-10 04:47:47 +00:00
|
|
|
color: #000000;
|
|
|
|
|
.modal-header {
|
|
|
|
|
border-bottom: 0px;
|
|
|
|
|
}
|
2022-01-12 12:34:39 +00:00
|
|
|
.modal-title {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
2022-01-10 04:47:47 +00:00
|
|
|
.btn-close {
|
|
|
|
|
width: 3.5rem;
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-body {
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
input {
|
|
|
|
|
border-radius: 5px !important;
|
|
|
|
|
}
|
|
|
|
|
.modal-main {
|
|
|
|
|
padding-bottom: 5rem;
|
|
|
|
|
}
|
|
|
|
|
.modal-footer-btn {
|
|
|
|
|
justify-content: end;
|
|
|
|
|
button {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-24 05:51:54 +00:00
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-02-08 07:11:16 +00:00
|
|
|
.onboarding-modal.dark .modal-content {
|
|
|
|
|
@extend .modal-content.home-modal-component.dark;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-06 19:34:52 +00:00
|
|
|
.modal-content.home-modal-component.dark {
|
|
|
|
|
background-color: $bg-dark-light !important;
|
|
|
|
|
color: $white !important;
|
|
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
|
background-color: $bg-dark-light !important;
|
|
|
|
|
}
|
|
|
|
|
.btn-close {
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
|
border-color: $border-grey-dark !important;
|
2022-02-12 10:21:05 +00:00
|
|
|
color: inherit;
|
2022-02-06 19:34:52 +00:00
|
|
|
}
|
|
|
|
|
input {
|
|
|
|
|
background-color: $bg-dark-light !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-select {
|
|
|
|
|
background-color: $bg-dark!important;
|
|
|
|
|
color: $white!important;
|
|
|
|
|
border-color: $border-grey-dark!important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-18 05:43:41 +00:00
|
|
|
.radio-img {
|
2022-01-27 10:51:38 +00:00
|
|
|
input {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.action-icon {
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2022-01-24 05:51:54 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.action-icon {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid $light-gray;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.action-icon:hover {
|
|
|
|
|
background-color: #d2ddec;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
input:checked + .action-icon {
|
|
|
|
|
border-color: $primary;
|
|
|
|
|
background-color: #7a95fb;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.tooltiptext {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
background-color: $black;
|
|
|
|
|
color: $white;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
margin-left: -10px;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.tooltiptext::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -5px;
|
|
|
|
|
border-width: 5px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: transparent transparent black transparent;
|
|
|
|
|
}
|
2022-01-24 05:51:54 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
.action-icon:hover + .tooltiptext {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-27 10:51:38 +00:00
|
|
|
input:checked + .action-icon:hover {
|
|
|
|
|
background-color: #3650af;
|
|
|
|
|
}
|
2022-01-14 08:27:31 +00:00
|
|
|
}
|
2022-01-18 05:43:41 +00:00
|
|
|
|
2022-01-20 13:05:37 +00:00
|
|
|
.icon-change-modal {
|
|
|
|
|
ul {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
float: left;
|
2022-01-27 10:51:38 +00:00
|
|
|
border: 2px solid #8991a0;
|
2022-01-20 13:05:37 +00:00
|
|
|
border-radius: 1.75px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
2022-02-02 02:37:02 +00:00
|
|
|
filter: invert(59%) sepia(27%) saturate(160%) hue-rotate(181deg)
|
|
|
|
|
brightness(91%) contrast(95%);
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li.selected {
|
2022-01-27 10:51:38 +00:00
|
|
|
border: 2px solid #0565ff;
|
2022-01-24 05:51:54 +00:00
|
|
|
|
2022-01-20 13:05:37 +00:00
|
|
|
img {
|
2022-02-02 02:37:02 +00:00
|
|
|
filter: invert(27%) sepia(84%) saturate(5230%) hue-rotate(212deg)
|
|
|
|
|
brightness(102%) contrast(100%);
|
2022-01-20 13:05:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-24 02:33:20 +00:00
|
|
|
/**
|
|
|
|
|
* Spinner Widget
|
|
|
|
|
*/
|
2022-01-27 10:51:38 +00:00
|
|
|
.spinner-container {
|
2022-01-24 02:33:20 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2022-01-21 05:58:16 +00:00
|
|
|
|
|
|
|
|
.animation-fade {
|
|
|
|
|
animation-name: fade;
|
2022-01-27 10:51:38 +00:00
|
|
|
animation-duration: 0.3s;
|
2022-01-21 05:58:16 +00:00
|
|
|
animation-timing-function: linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fade {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-02 16:59:57 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Query panel
|
|
|
|
|
*/
|
|
|
|
|
.query-btn {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 24px;
|
|
|
|
|
width: 24px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-btn.dark {
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-family-secondary {
|
|
|
|
|
@include button-outline($light-theme: true);
|
|
|
|
|
height: 32px;
|
|
|
|
|
width: 112px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-family-secondary.dark {
|
|
|
|
|
@include button-outline($light-theme: false);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 11:05:11 +00:00
|
|
|
.rest-methods-options {
|
|
|
|
|
.select-search,
|
|
|
|
|
.select-search-dark,
|
|
|
|
|
.select-search__value input,
|
|
|
|
|
.select-search-dark__value input {
|
2022-02-02 16:59:57 +00:00
|
|
|
width: 90px !important;
|
|
|
|
|
height: 32px !important;
|
|
|
|
|
border-radius: $border-radius !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-pane-restapi-tabs.dark {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: $bg-dark !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
border-color: $border-grey-dark !important;
|
|
|
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
|
color: $disabled !important;
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #262b33 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.list-group-item.active {
|
|
|
|
|
color: $white !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.query-pane-restapi-tabs {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #f7f9fc;
|
|
|
|
|
border: 1px solid #d2ddec;
|
2022-02-02 16:59:57 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 0px;
|
2022-02-04 11:05:11 +00:00
|
|
|
height: fit-content;
|
2022-02-02 16:59:57 +00:00
|
|
|
min-height: 160px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
.row {
|
|
|
|
|
height: inherit;
|
|
|
|
|
|
|
|
|
|
.keys {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-right: 1px solid #d2ddec !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
min-height: 90px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.keys.dark {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-color: $border-grey-dark !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.rest-api-tab-content {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
min-height: 160px;
|
|
|
|
|
|
|
|
|
|
.rest-api-tabpanes {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rest-api-tabpanes.active {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-pane-rest-api-keys-list-group {
|
|
|
|
|
margin-top: 1.25rem;
|
|
|
|
|
.list-group-item {
|
2022-02-04 11:05:11 +00:00
|
|
|
border: none !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
margin-bottom: 11px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 17px;
|
2022-02-04 11:05:11 +00:00
|
|
|
padding: 3px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
height: 22px;
|
|
|
|
|
width: 72px;
|
2022-02-04 11:05:11 +00:00
|
|
|
|
2022-02-02 16:59:57 +00:00
|
|
|
span {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: left;
|
|
|
|
|
margin-left: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-radius: 4px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
background-color: $bg-light;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-group-item.active {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-radius: 4px !important;
|
|
|
|
|
background-color: $primary !important;
|
|
|
|
|
z-index: inherit !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ** Query Panel: REST API Tabs **
|
|
|
|
|
.group-header {
|
2022-02-04 11:05:11 +00:00
|
|
|
background: #d2ddec;
|
2022-02-02 16:59:57 +00:00
|
|
|
border-radius: 4px;
|
2022-02-04 11:05:11 +00:00
|
|
|
height: 28px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
span {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: left;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// **Alert component**
|
|
|
|
|
.alert-component {
|
2022-02-04 11:05:11 +00:00
|
|
|
border: 1px solid rgba(101, 109, 119, 0.16) !important;
|
|
|
|
|
background: #f5f7f9;
|
2022-02-02 16:59:57 +00:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: $primary;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert-component.dark {
|
2022-02-04 11:05:11 +00:00
|
|
|
border: none !important;
|
|
|
|
|
background-color: #333c48 !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.codehinter-plugins.code-hinter {
|
|
|
|
|
@extend .codehinter-default-input;
|
|
|
|
|
|
|
|
|
|
.popup-btn {
|
2022-02-04 11:05:11 +00:00
|
|
|
margin-top: 0.65rem !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.CodeMirror pre.CodeMirror-line {
|
2022-02-14 13:33:47 +00:00
|
|
|
height: 32px !important;
|
2022-02-04 11:05:11 +00:00
|
|
|
margin-bottom: 6px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.CodeMirror-placeholder {
|
2022-02-14 13:33:47 +00:00
|
|
|
height: 21px !important;
|
2022-02-04 11:05:11 +00:00
|
|
|
position: absolute !important;
|
2022-02-14 13:33:47 +00:00
|
|
|
margin-top: 3px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.CodeMirror-cursor {
|
2022-02-04 11:05:11 +00:00
|
|
|
height: inherit !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
.CodeMirror-lines {
|
2022-02-14 13:33:47 +00:00
|
|
|
height: 32px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* *Stripe Query Select-search
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.stripe-operation-options .select-search__row .col-md-8 {
|
2022-02-04 11:05:11 +00:00
|
|
|
margin-left: 45px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-width-268 {
|
2022-02-04 11:05:11 +00:00
|
|
|
width: 268px !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
|
|
|
|
|
input {
|
2022-02-04 11:05:11 +00:00
|
|
|
border-radius: $border-radius !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//*button loading with spinner with primary color*//
|
|
|
|
|
.button-loading {
|
|
|
|
|
position: relative;
|
|
|
|
|
color: transparent !important;
|
|
|
|
|
text-shadow: none !important;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
|
|
&:after {
|
2022-02-04 11:05:11 +00:00
|
|
|
content: "";
|
2022-02-02 16:59:57 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
border: 1.5px solid currentColor;
|
|
|
|
|
border-right-color: transparent;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: $primary;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
// left: calc(50% - .5rem);
|
|
|
|
|
// top: calc(50% - .5rem);
|
2022-02-04 11:05:11 +00:00
|
|
|
animation: spinner-border 0.75s linear infinite;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-icon.dark {
|
|
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Rest-API Tab Panes
|
|
|
|
|
.tab-pane-body {
|
2022-02-04 11:05:11 +00:00
|
|
|
margin-left: -2.5% !important;
|
2022-02-02 16:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//CodeMirror padding
|
2022-02-04 11:05:11 +00:00
|
|
|
.CodeMirror pre.CodeMirror-line,
|
|
|
|
|
.CodeMirror pre.CodeMirror-line-like {
|
2022-02-02 16:59:57 +00:00
|
|
|
padding: 0 8px !important;
|
|
|
|
|
}
|
2022-02-02 02:37:02 +00:00
|
|
|
// comment styles ::override
|
|
|
|
|
.editor-sidebar {
|
|
|
|
|
.nav-tabs {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
|
|
|
|
.nav-tabs .nav-link.active {
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 11:05:11 +00:00
|
|
|
.comment-card-wrapper {
|
|
|
|
|
border-top: 0.5px solid #e1e1e1 !important;
|
2022-02-02 02:37:02 +00:00
|
|
|
margin-top: -1px !important;
|
2022-02-04 11:05:11 +00:00
|
|
|
}
|
2022-02-05 02:04:02 +00:00
|
|
|
|
|
|
|
|
div#driver-highlighted-element-stage, div#driver-page-overlay {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
outline: 5000px solid rgba(0, 0, 0, .75)
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-08 07:11:16 +00:00
|
|
|
.dark-theme-walkthrough#driver-popover-item {
|
|
|
|
|
background-color: $bg-dark-light!important;
|
|
|
|
|
border-color: rgba(101, 109, 119, 0.16)!important;
|
|
|
|
|
|
|
|
|
|
.driver-popover-title {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
.driver-popover-tip {
|
|
|
|
|
border-color: transparent transparent transparent $bg-dark-light!important;
|
|
|
|
|
}
|
|
|
|
|
.driver-popover-description {
|
|
|
|
|
color: #D9DCDE !important;
|
|
|
|
|
}
|
|
|
|
|
.driver-popover-footer .driver-close-btn {
|
|
|
|
|
color: #fff!important;
|
|
|
|
|
text-shadow: none!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-prev-btn, .driver-next-btn {
|
|
|
|
|
text-shadow: none!important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-05 02:04:02 +00:00
|
|
|
#driver-popover-item{
|
|
|
|
|
padding: 20px !important;
|
|
|
|
|
|
|
|
|
|
.driver-prev-btn,
|
|
|
|
|
.driver-next-btn,
|
|
|
|
|
.driver-close-btn{
|
|
|
|
|
border: none !important;
|
|
|
|
|
background: none !important;
|
|
|
|
|
padding-left: 0 !important;
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-next-btn,
|
|
|
|
|
.driver-prev-btn {
|
|
|
|
|
color: $primary !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-disabled{
|
|
|
|
|
color: $primary;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.driver-popover-footer{
|
|
|
|
|
margin-top: 20px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-04 11:05:11 +00:00
|
|
|
.pointer-events-none {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2022-02-06 19:34:52 +00:00
|
|
|
|
|
|
|
|
.popover.popover-dark-themed {
|
|
|
|
|
background-color: $bg-dark-light;
|
|
|
|
|
border-color: rgba(101, 109, 119, 0.16);
|
|
|
|
|
.popover-body {
|
|
|
|
|
color: #D9DCDE !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor .editor-sidebar .inspector .form-control-plaintext {
|
|
|
|
|
padding: 2px 4px;
|
|
|
|
|
}
|
2022-02-07 12:43:28 +00:00
|
|
|
.tablr-gutter-x-0 {
|
|
|
|
|
--tblr-gutter-x: 0!important;
|
2022-02-19 18:02:43 +00:00
|
|
|
}
|