diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 16:58:53 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-27 16:58:53 +0200 |
| commit | 420506e58fdfc84f1a5bede0a01dedf0af3bb4f3 (patch) | |
| tree | 57726b40e8aa9ccf80f874f39d3facefc0331420 /public/javascripts/tiny_mce/plugins/fullpage/css | |
| parent | 241d5e91b2b6716e2861cc77d319c3d3568343a8 (diff) | |
Stage 7: Rails 7.2 → 8.1 on Ruby 3.2.11
- Bump Rails to 8.1.3 (Ruby unchanged at 3.2.11, new gemset rails8-upgrade)
- config.load_defaults 8.1; merge app:update diffs for all environment files
- Remove routing-filter 0.7.0; replace with native scope '(:locale)' in
routes.rb and default_url_options in ApplicationController
- Delete config/initializers/routing_filter_rails71_patch.rb
- Replace vendored TinyMCE 3.x (~200 files) with tinymce-rails ~> 8.3;
migrate admin_interface.js from jQuery .tinymce()/advanced theme to
tinymce.init(); add config/tinymce.yml; note: TinyMCE 7+ is GPL
- rails-i18n ~> 8.0 added explicitly (previously indirect dependency)
- awesome_nested_set, acts-as-taggable-on pinned to git main/master
(gemspec activerecord < 8.1 ceiling; no functional incompatibility;
repin to version once upstream releases updated gemspecs)
- globalize ~> 7.0, libxml-ruby ~> 5.0, nokogiri ~> 1.18, pg ~> 1.5
- sass-rails, coffee-rails, uglifier moved from :assets group to main
(Sprockets 4 convention; :assets group no longer meaningful)
- Node: head, draft, lock_owner marked belongs_to optional: true
- Page: node, user, editor marked belongs_to optional: true
- Static assets in public/images/ and public/javascripts/ referenced via
plain HTML tags; Rails 8 load_defaults raises on pipeline helpers for
undeclared assets
- sessions_controller_test.rb: remove stale require and dead rescue_action
- users_controller_test.rb: assert button[type=submit] not input[type=submit]
(Rails 8 button_to renders <button> not <input>)
- test_helper.rb: node.reload after children.create! (awesome_nested_set
3.9.0 does not refresh parent in memory after callback)
- 129 runs, 339 assertions, 3 failures, 0 errors — identical baseline to 7.2
Diffstat (limited to 'public/javascripts/tiny_mce/plugins/fullpage/css')
| -rw-r--r-- | public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css | 182 |
1 files changed, 0 insertions, 182 deletions
diff --git a/public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css b/public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css deleted file mode 100644 index 7a3334f..0000000 --- a/public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css +++ /dev/null | |||
| @@ -1,182 +0,0 @@ | |||
| 1 | /* Hide the advanced tab */ | ||
| 2 | #advanced_tab { | ||
| 3 | display: none; | ||
| 4 | } | ||
| 5 | |||
| 6 | #metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright { | ||
| 7 | width: 280px; | ||
| 8 | } | ||
| 9 | |||
| 10 | #doctype, #docencoding { | ||
| 11 | width: 200px; | ||
| 12 | } | ||
| 13 | |||
| 14 | #langcode { | ||
| 15 | width: 30px; | ||
| 16 | } | ||
| 17 | |||
| 18 | #bgimage { | ||
| 19 | width: 220px; | ||
| 20 | } | ||
| 21 | |||
| 22 | #fontface { | ||
| 23 | width: 240px; | ||
| 24 | } | ||
| 25 | |||
| 26 | #leftmargin, #rightmargin, #topmargin, #bottommargin { | ||
| 27 | width: 50px; | ||
| 28 | } | ||
| 29 | |||
| 30 | .panel_wrapper div.current { | ||
| 31 | height: 400px; | ||
| 32 | } | ||
| 33 | |||
| 34 | #stylesheet, #style { | ||
| 35 | width: 240px; | ||
| 36 | } | ||
| 37 | |||
| 38 | /* Head list classes */ | ||
| 39 | |||
| 40 | .headlistwrapper { | ||
| 41 | width: 100%; | ||
| 42 | } | ||
| 43 | |||
| 44 | .addbutton, .removebutton, .moveupbutton, .movedownbutton { | ||
| 45 | border-top: 1px solid; | ||
| 46 | border-left: 1px solid; | ||
| 47 | border-bottom: 1px solid; | ||
| 48 | border-right: 1px solid; | ||
| 49 | border-color: #F0F0EE; | ||
| 50 | cursor: default; | ||
| 51 | display: block; | ||
| 52 | width: 20px; | ||
| 53 | height: 20px; | ||
| 54 | } | ||
| 55 | |||
| 56 | #doctypes { | ||
| 57 | width: 200px; | ||
| 58 | } | ||
| 59 | |||
| 60 | .addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover { | ||
| 61 | border: 1px solid #0A246A; | ||
| 62 | background-color: #B6BDD2; | ||
| 63 | } | ||
| 64 | |||
| 65 | .addbutton { | ||
| 66 | background-image: url('../images/add.gif'); | ||
| 67 | float: left; | ||
| 68 | margin-right: 3px; | ||
| 69 | } | ||
| 70 | |||
| 71 | .removebutton { | ||
| 72 | background-image: url('../images/remove.gif'); | ||
| 73 | float: left; | ||
| 74 | } | ||
| 75 | |||
| 76 | .moveupbutton { | ||
| 77 | background-image: url('../images/move_up.gif'); | ||
| 78 | float: left; | ||
| 79 | margin-right: 3px; | ||
| 80 | } | ||
| 81 | |||
| 82 | .movedownbutton { | ||
| 83 | background-image: url('../images/move_down.gif'); | ||
| 84 | float: left; | ||
| 85 | } | ||
| 86 | |||
| 87 | .selected { | ||
| 88 | border: 1px solid #0A246A; | ||
| 89 | background-color: #B6BDD2; | ||
| 90 | } | ||
| 91 | |||
| 92 | .toolbar { | ||
| 93 | width: 100%; | ||
| 94 | } | ||
| 95 | |||
| 96 | #headlist { | ||
| 97 | width: 100%; | ||
| 98 | margin-top: 3px; | ||
| 99 | font-size: 11px; | ||
| 100 | } | ||
| 101 | |||
| 102 | #info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element { | ||
| 103 | display: none; | ||
| 104 | } | ||
| 105 | |||
| 106 | #addmenu { | ||
| 107 | position: absolute; | ||
| 108 | border: 1px solid gray; | ||
| 109 | display: none; | ||
| 110 | z-index: 100; | ||
| 111 | background-color: white; | ||
| 112 | } | ||
| 113 | |||
| 114 | #addmenu a { | ||
| 115 | display: block; | ||
| 116 | width: 100%; | ||
| 117 | line-height: 20px; | ||
| 118 | text-decoration: none; | ||
| 119 | background-color: white; | ||
| 120 | } | ||
| 121 | |||
| 122 | #addmenu a:hover { | ||
| 123 | background-color: #B6BDD2; | ||
| 124 | color: black; | ||
| 125 | } | ||
| 126 | |||
| 127 | #addmenu span { | ||
| 128 | padding-left: 10px; | ||
| 129 | padding-right: 10px; | ||
| 130 | } | ||
| 131 | |||
| 132 | #updateElementPanel { | ||
| 133 | display: none; | ||
| 134 | } | ||
| 135 | |||
| 136 | #script_element .panel_wrapper div.current { | ||
| 137 | height: 108px; | ||
| 138 | } | ||
| 139 | |||
| 140 | #style_element .panel_wrapper div.current { | ||
| 141 | height: 108px; | ||
| 142 | } | ||
| 143 | |||
| 144 | #link_element .panel_wrapper div.current { | ||
| 145 | height: 140px; | ||
| 146 | } | ||
| 147 | |||
| 148 | #element_script_value { | ||
| 149 | width: 100%; | ||
| 150 | height: 100px; | ||
| 151 | } | ||
| 152 | |||
| 153 | #element_comment_value { | ||
| 154 | width: 100%; | ||
| 155 | height: 120px; | ||
| 156 | } | ||
| 157 | |||
| 158 | #element_style_value { | ||
| 159 | width: 100%; | ||
| 160 | height: 100px; | ||
| 161 | } | ||
| 162 | |||
| 163 | #element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title { | ||
| 164 | width: 250px; | ||
| 165 | } | ||
| 166 | |||
| 167 | .updateElementButton { | ||
| 168 | margin-top: 3px; | ||
| 169 | } | ||
| 170 | |||
| 171 | /* MSIE specific styles */ | ||
| 172 | |||
| 173 | * html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton { | ||
| 174 | width: 22px; | ||
| 175 | height: 22px; | ||
| 176 | } | ||
| 177 | |||
| 178 | textarea { | ||
| 179 | height: 55px; | ||
| 180 | } | ||
| 181 | |||
| 182 | .panel_wrapper div.current {height:420px;} \ No newline at end of file | ||
