summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--provisioning/modules/pixelated/manifests/source/install_useragent.pp6
-rw-r--r--web-ui/app/scss/views/_mail-list.scss2
2 files changed, 4 insertions, 4 deletions
diff --git a/provisioning/modules/pixelated/manifests/source/install_useragent.pp b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
index f8e9690a..0b19eeb3 100644
--- a/provisioning/modules/pixelated/manifests/source/install_useragent.pp
+++ b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
@@ -2,7 +2,7 @@
# and make sure venv is activated on login
class pixelated::source::install_useragent {
- $virtualenv_path = '/home/vagrant/user-agent-venv'
+ $virtualenv_path = '/home/vagrant/.venvs/pixua'
exec { 'install-pixelated':
# use of "user" parameter doesn't set env variables right,
@@ -24,8 +24,8 @@ class pixelated::source::install_useragent {
}
exec { 'add_custom_node_modules_to_bashrc':
- command => "/bin/bash -c 'echo \"source /home/vagrant/user-agent-venv/bin/activate\" >> /home/vagrant/.bashrc'",
- unless => "/bin/grep \"source /home/vagrant/user-agent-venv/bin/activate\" /home/vagrant/.bashrc",
+ command => "/bin/bash -c 'echo \"source ${virtualenv_path}/bin/activate\" >> /home/vagrant/.bashrc'",
+ unless => "/bin/grep \"source ${virtualenv_path}/bin/activate\" /home/vagrant/.bashrc",
user => 'vagrant',
require => [Exec['install-pixelated'], File['/home/vagrant/activate_custom_node_modules.sh']]
}
diff --git a/web-ui/app/scss/views/_mail-list.scss b/web-ui/app/scss/views/_mail-list.scss
index f5c4c60f..3ebca20f 100644
--- a/web-ui/app/scss/views/_mail-list.scss
+++ b/web-ui/app/scss/views/_mail-list.scss
@@ -78,7 +78,7 @@
font-size: 0.8em;
overflow: hidden;
text-overflow: ellipsis;
- display: inline-block;
+ padding-right: 3.5em;
}
&-date {