LoginSignup
0
0

More than 1 year has passed since last update.

summernote-railsのformもfocus設定したい!

Posted at

結論

css
.note-editor.note-frame .note-editing-area .note-editable:focus {
  color: #495057;
  background-color: #fff;
  border: 4px solid #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.4);
}

.note-editable:focus {
  border: 1px solid #ced4da;
  transition: border-color 0.15s;
}

ちょっと違うけどフォーカスっぽいものが出来ました~

画像のサイズ変更は今調べ中。。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0