From 1d3f3320b811ece1aaf9b5c9093e94de748fc7a7 Mon Sep 17 00:00:00 2001 From: Gunther Brunner Date: Thu, 2 Oct 2014 23:18:07 +0900 Subject: [PATCH] Cursor text for disabled textareas. --- res/app/layout/stf-styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/res/app/layout/stf-styles.css b/res/app/layout/stf-styles.css index 87fc487e..0fc470e4 100644 --- a/res/app/layout/stf-styles.css +++ b/res/app/layout/stf-styles.css @@ -418,3 +418,12 @@ input { .alert { margin-bottom: 0; } + + +/* Form */ + +textarea.form-control[disabled], +textarea.form-control[readonly], +fieldset[disabled] textarea.form-control { + cursor: text; +}