CSS fix, routes fix [SCI-6844] (#4106)

This commit is contained in:
artoscinote 2022-05-31 09:05:38 +02:00 committed by GitHub
parent 36ffbb0eab
commit 3c63d9a3eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -40,6 +40,11 @@
}
.tinymce-container {
align-items: center;
display: flex;
min-height: 36px;
width: 100%;
.tinymce-status-badge {
display: none;
}

View file

@ -11,8 +11,6 @@
border-color: $color-white;
border-radius: 3px;
float: left;
margin-bottom: 10px;
min-height: 100px;
padding: 3px;
width: 100%;

View file

@ -451,7 +451,6 @@ Rails.application.routes.draw do
resources :step_comments,
path: '/comments',
only: %i(create index update destroy)
resources :tables, controller: 'step_elements/tables', only: %i(create destroy update)
resources :texts, controller: 'step_elements/texts', only: %i(create destroy update)
resources :checklists, controller: 'step_elements/checklists', only: %i(create destroy update) do