2013-06-26 14:35:49 -07:00
|
|
|
/**
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
* Style that is inserted into the message after it is loaded.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* General HTML style.
|
2013-06-26 14:35:49 -07:00
|
|
|
*/
|
2012-06-13 10:43:41 -07:00
|
|
|
|
2016-09-08 10:55:18 +10:00
|
|
|
* {
|
|
|
|
|
transition: height 0.25s;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-08 11:12:42 +10:00
|
|
|
html {
|
2016-08-10 01:16:37 +10:00
|
|
|
/* Trigger CSS 2.1 § 10.6.7 to get a shrink-wrapped height. */
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
position: absolute !important;
|
|
|
|
|
top: 0 !important;
|
2016-08-10 01:16:37 +10:00
|
|
|
left: 0 !important;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
bottom: auto !important;
|
2016-08-10 01:16:37 +10:00
|
|
|
width: 100% !important;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
height: auto !important;
|
|
|
|
|
|
2016-08-10 01:16:37 +10:00
|
|
|
/* Lock down the box enough so we don't get an incrementally
|
|
|
|
|
expanding web view */
|
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
border: 0 !important;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
/* Never show scroll bars */
|
|
|
|
|
overflow: hidden;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2016-08-10 01:16:37 +10:00
|
|
|
margin: 0;
|
2016-07-08 11:12:42 +10:00
|
|
|
border: 0;
|
2016-08-10 01:16:37 +10:00
|
|
|
padding: 12px;
|
|
|
|
|
overflow-wrap: break-word !important;
|
2012-06-13 10:43:41 -07:00
|
|
|
}
|
|
|
|
|
|
2014-05-21 20:58:51 -07:00
|
|
|
table {
|
2016-08-11 16:58:10 +10:00
|
|
|
/* By default, tables reset the font properties to "normal" */
|
|
|
|
|
font-size: inherit;
|
2014-05-21 20:58:51 -07:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 11:35:30 -07:00
|
|
|
a {
|
2016-08-11 16:58:10 +10:00
|
|
|
color: #08c;
|
2012-09-27 11:35:30 -07:00
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:43:41 -07:00
|
|
|
hr {
|
2016-08-11 16:58:10 +10:00
|
|
|
background-color: #999;
|
|
|
|
|
height: 1px;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
margin-bottom: 15px;
|
2012-06-13 10:43:41 -07:00
|
|
|
}
|
|
|
|
|
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
blockquote {
|
2016-08-17 22:19:47 +10:00
|
|
|
margin: 0.5em 16px;
|
2016-08-11 16:58:10 +10:00
|
|
|
border: 0;
|
|
|
|
|
border-left: 3px #aaa solid;
|
|
|
|
|
padding: 0 8px;
|
2012-06-13 10:43:41 -07:00
|
|
|
}
|
2012-09-27 11:35:30 -07:00
|
|
|
|
2016-08-11 16:58:10 +10:00
|
|
|
|
2016-07-08 11:12:42 +10:00
|
|
|
pre {
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|
|
|
|
|
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
/**
|
|
|
|
|
* Message chrome style.
|
|
|
|
|
*/
|
2012-09-27 11:35:30 -07:00
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_signature {
|
2012-06-13 10:43:41 -07:00
|
|
|
color: #777;
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_signature a,
|
|
|
|
|
.geary_quote_container a {
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
color: #5fb2e7;
|
2013-04-22 14:14:11 -07:00
|
|
|
}
|
|
|
|
|
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
@media screen {
|
2013-04-22 14:14:11 -07:00
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_replaced_inline_image {
|
2013-08-06 17:19:16 -07:00
|
|
|
display: block;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
max-width: 100%;
|
2016-10-11 00:58:52 +11:00
|
|
|
margin: 1em 0;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2013-08-06 17:19:16 -07:00
|
|
|
|
2016-04-12 21:54:51 +10:00
|
|
|
/* Inline collapsable quote blocks */
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container {
|
2014-01-28 22:18:58 -05:00
|
|
|
position: relative;
|
2016-08-17 22:19:47 +10:00
|
|
|
/* Split 1em of top/bottom margin between here and the default
|
|
|
|
|
blockquote style, so if a message specifies 0px margin and padding
|
|
|
|
|
(i.e. GMail) there will still be some space space between the
|
|
|
|
|
container's background and and the blockquote. */
|
2016-08-11 17:03:19 +10:00
|
|
|
margin: 0.5em 0;
|
|
|
|
|
border-radius: 4px;
|
2016-08-17 22:19:47 +10:00
|
|
|
padding: 0.5em 0;
|
2012-09-27 11:35:30 -07:00
|
|
|
color: #303030;
|
2013-06-26 14:35:49 -07:00
|
|
|
background-color: #e8e8e8;/* recv-quoted */
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_sent .geary_quote_container {
|
2016-04-12 21:54:51 +10:00
|
|
|
background-color: #e8e8e8;/* sent-quoted */
|
|
|
|
|
}
|
2016-08-11 17:03:19 +10:00
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container > .quote {
|
2014-01-28 22:18:58 -05:00
|
|
|
position: relative;
|
2016-08-17 22:19:47 +10:00
|
|
|
padding: 0;
|
2016-08-11 17:03:19 +10:00
|
|
|
border: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
2014-01-28 22:18:58 -05:00
|
|
|
z-index: 0;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container.controllable.hide > .quote {
|
2016-08-11 17:03:19 +10:00
|
|
|
/* Use a fraction value to cut the last visible line off half way. */
|
|
|
|
|
max-height: 7.75em;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container.controllable > .quote > blockquote {
|
2016-08-11 17:03:19 +10:00
|
|
|
/* Add space between the quote and the hider button */
|
|
|
|
|
margin-bottom: 18px;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2013-06-26 14:35:49 -07:00
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container > .shower,
|
|
|
|
|
.geary_quote_container > .hider {
|
2014-01-28 22:18:58 -05:00
|
|
|
position: absolute;
|
2016-08-11 17:03:19 +10:00
|
|
|
display: none;
|
2014-01-28 22:18:58 -05:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2016-08-11 17:03:19 +10:00
|
|
|
bottom: -8px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-webkit-user-drag: none;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container > .shower > input,
|
|
|
|
|
.geary_quote_container > .hider > input {
|
2014-01-28 22:18:58 -05:00
|
|
|
width: 100%;
|
2016-08-11 17:03:19 +10:00
|
|
|
height: 16px;
|
2014-01-28 22:18:58 -05:00
|
|
|
padding: 0;
|
2016-08-11 17:03:19 +10:00
|
|
|
font-size: 8px; /* Absolute size in pixels for graphics */
|
2014-01-28 22:18:58 -05:00
|
|
|
color: #888;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container > .shower:hover > input,
|
|
|
|
|
.geary_quote_container > .hider:hover > input {
|
2014-01-28 22:18:58 -05:00
|
|
|
color: #000;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container.controllable.hide > .hider {
|
2012-06-13 10:43:41 -07:00
|
|
|
display: none;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_quote_container.controllable.hide > .shower,
|
|
|
|
|
.geary_quote_container.controllable > .hider {
|
2012-06-13 10:43:41 -07:00
|
|
|
display: block;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2012-06-13 10:43:41 -07:00
|
|
|
|
2016-04-12 21:54:51 +10:00
|
|
|
/* Highlight search terms */
|
|
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
.geary_search_coloring *::selection {
|
2013-05-07 13:59:54 -07:00
|
|
|
background-color: #00ddff;
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
}
|
2013-05-07 13:59:54 -07:00
|
|
|
}
|
2013-07-11 12:50:19 -07:00
|
|
|
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
@media print {
|
|
|
|
|
body {
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
}
|
2013-07-11 12:50:19 -07:00
|
|
|
|
2016-08-11 17:31:08 +10:00
|
|
|
#geary_part_container {
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
display: none !important;
|
|
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
#geary_print_container {
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
display: inline-block !important;
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
}
|
2016-08-11 17:31:08 +10:00
|
|
|
#geary_print_container .preview {
|
Remove uneeded ConversationWebView, HTML and CSS code.
* src/client/conversation-viewer/conversation-web-view.vala
(ConversationWebView::ConversationWebView): Don't load message.html
since ConversationMessage now just loads the message HTML directly.
(ConversationWebView::on_load_finished): Don't load container DIV and
inline icons since GTK-based chrome has mostly replaced HTML chrome.
(conversation_icon_color, container, scroll_reset, set_icon_src,
set_attachment_src): Removed, no longer needed.
(ConversationWebView::get_preferred_size,
ConversationWebView::get_preferred_height): Added to ensure GTK gets
a useful min/preferred height for the widget.
* theming/message-viewer.css: Remove rules used for now-obsolete HTML
chrome - headers, attachments, etc. Added rules to ensure HTML and BODY
element's heights and scrollbars are appropriate for use in this
context.
* theming/message-viewer.html: Removed, no longer needed.
2016-04-09 18:15:30 +10:00
|
|
|
display: none !important;
|
|
|
|
|
}
|
2013-07-11 12:50:19 -07:00
|
|
|
}
|