diff --git a/src/main/resources/io/jenkins/plugins/bootstrap5/MessagesViewModel/index.jelly b/src/main/resources/io/jenkins/plugins/bootstrap5/MessagesViewModel/index.jelly index 27831e5..a93a353 100644 --- a/src/main/resources/io/jenkins/plugins/bootstrap5/MessagesViewModel/index.jelly +++ b/src/main/resources/io/jenkins/plugins/bootstrap5/MessagesViewModel/index.jelly @@ -1,48 +1,34 @@ - + - -
-
- - -
-              
-                
-                  
- ${message} -
-
-
-
-
+ +
+
+            
+              
+ ${message} +
+
+
-
+ -
-
- - - -
-            
-              
-                
- ${message} -
-
-
-
-
- + +
+
+          
+            
+ ${message} +
+
+
-
- + diff --git a/src/main/webapp/css/jenkins-style.css b/src/main/webapp/css/jenkins-style.css index 225138f..20dbd44 100644 --- a/src/main/webapp/css/jenkins-style.css +++ b/src/main/webapp/css/jenkins-style.css @@ -155,3 +155,27 @@ pre { backdrop-filter: contrast(0.6) brightness(2.4) saturate(2) blur(15px); box-shadow: 0 0 8px 2px rgba(0,0,30,.05), 0 0 1px 1px rgba(0,0,20,.025), 0 10px 20px rgba(0,0,20,.15); } + +/* ------------------------------------------------------------------------------------------------------------------- */ +/* Console output */ +/* ------------------------------------------------------------------------------------------------------------------- */ + +.bs5-console-output { + margin: 0 -1rem -1rem; + padding: 0 1rem 1rem; + overflow-y: auto; + + pre { + background: transparent; + border: none; + margin: 0; + padding: 0; + line-height: 1.75; + font-size: var(--font-size-sm); + overflow-wrap: break-word; + + a { + overflow-wrap: break-word; + } + } +}